9 lines
114 B
PHP
9 lines
114 B
PHP
<?php
|
|
|
|
namespace spec\PhpSpec\Util;
|
|
|
|
class ExampleObjectUsingTrait
|
|
{
|
|
use ExampleTrait, AnotherExampleTrait;
|
|
}
|