Skip to content

Commit

Permalink
cs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DjordyKoert committed Jan 6, 2024
1 parent 373e2b6 commit 55fd85f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Examples/using-traits/BellsAndWhistles.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
trait BellsAndWhistles
{
use Bells;
use \OpenApi\Examples\UsingTraits\Decoration\Whistles;
use Decoration\Whistles;

/**
* The plating.
Expand Down
2 changes: 1 addition & 1 deletion Examples/using-traits/Product.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/
class Product
{
use \OpenApi\Examples\UsingTraits\Colour;
use Colour;
use BellsAndWhistles;

/**
Expand Down
2 changes: 1 addition & 1 deletion tests/Fixtures/Parser/AllTraits.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
trait AllTraits
{
use AsTrait;
use \OpenApi\Tests\Fixtures\Parser\HelloTrait;
use HelloTrait;
}
2 changes: 1 addition & 1 deletion tests/Fixtures/Parser/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* example=User::CONSTANT,
* )
*/
class User extends ParentClass implements \OpenApi\Tests\Fixtures\Parser\UserInterface
class User extends ParentClass implements UserInterface
{
use Hello;

Expand Down

0 comments on commit 55fd85f

Please sign in to comment.