Skip to content

Commit

Permalink
CS fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
belgattitude committed Feb 22, 2016
1 parent 9f8cbfe commit ebe6f01
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/Soluble/FlexStore/Column/ColumnModel/Search.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function all()

/**
* Search ColumnModel for columns that are not in the $columns parameter
*
*
* @throws Exception\InvalidArgumentException
* @return Result
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

namespace Soluble\FlexStore\Column\Exception;

class ColumnNotFoundException extends \Exception implements ExceptionInterface
use Exception;

class ColumnNotFoundException extends Exception implements ExceptionInterface
{
};
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

class DuplicateColumnException extends InvalidArgumentException
{
};
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
{
};
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

namespace Soluble\FlexStore\Column\Exception;

class MissingColumnException extends \Exception implements ExceptionInterface
use Exception;

class MissingColumnException extends Exception implements ExceptionInterface
{
};
}
2 changes: 1 addition & 1 deletion src/Soluble/FlexStore/Source/AbstractSource.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public function setMetadataReader(AbstractMetadataReader $metadataReader)

/**
* Return underlying metadata reader
*
*
* @return AbstractMetadataReader
*/
abstract public function getMetadataReader();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
use Soluble\FlexStore\Store;
use Soluble\FlexStore\Column\ColumnModel;


/**
* Generated by PHPUnit_SkeletonGenerator 1.2.1 on 2014-04-10 at 15:15:20.
*/
Expand Down

0 comments on commit ebe6f01

Please sign in to comment.