mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 06:30:04 +08:00
13 lines
89 B
PHP
13 lines
89 B
PHP
|
<?php
|
||
|
namespace NS1;
|
||
|
use DateTime;
|
||
|
|
||
|
trait SomeTrait {
|
||
|
|
||
|
}
|
||
|
|
||
|
class Foo {
|
||
|
use SomeTrait;
|
||
|
}
|
||
|
|