Skip to content

Commit

Permalink
Style fixes for latest version of PHP-CS-Fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
JaZo committed Jul 1, 2019
1 parent ba24388 commit ba7fd99
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/Document.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@

class Document implements DocumentInterface
{
use HasLinks, HasMeta;
use HasLinks;
use HasMeta;

/**
* @var \Psr\Http\Message\ResponseInterface|null
Expand Down
3 changes: 2 additions & 1 deletion src/Error.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@

class Error
{
use HasLinks, HasMeta;
use HasLinks;
use HasMeta;

/**
* @var string|null
Expand Down
4 changes: 3 additions & 1 deletion src/Item.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@

class Item extends Model implements ItemInterface
{
use HasLinks, HasMeta, HasType;
use HasLinks;
use HasMeta;
use HasType;

/**
* @var
Expand Down
3 changes: 2 additions & 1 deletion src/Relations/AbstractRelation.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@

abstract class AbstractRelation
{
use HasLinks, HasMeta;
use HasLinks;
use HasMeta;

/**
* @var \Swis\JsonApi\Client\Interfaces\DataInterface|null
Expand Down

0 comments on commit ba7fd99

Please sign in to comment.