Skip to content

Commit

Permalink
Merge branch 'master' into issue#24
Browse files Browse the repository at this point in the history
Conflicts:
	src/Cubiche/Core/Storage/InMemoryStorage.php
  • Loading branch information
ivannis committed Apr 29, 2016
2 parents 47e4de2 + 9ac4041 commit 5017b70
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 70 deletions.
3 changes: 1 addition & 2 deletions Comparator.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Cubiche\Core\Comparable;

/**
Expand All @@ -20,8 +21,6 @@ class Comparator extends AbstractComparator
{
/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Comparable\ComparatorInterface::acceptComparatorVisitor()
*/
public function acceptComparatorVisitor(ComparatorVisitorInterface $visitor)
{
Expand Down
9 changes: 1 addition & 8 deletions ComparatorTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Cubiche\Core\Comparable;

use Cubiche\Core\Visitor\VisitorInterface;
Expand Down Expand Up @@ -37,8 +38,6 @@ public function __call($method, array $arguments)

/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Comparable\ComparatorInterface::compare()
*/
public function compare($a, $b)
{
Expand All @@ -51,8 +50,6 @@ public function compare($a, $b)

/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Comparable\ComparatorInterface::reverse()
*/
public function reverse()
{
Expand All @@ -61,8 +58,6 @@ public function reverse()

/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Comparable\ComparatorInterface::orX()
*/
public function orX(ComparatorInterface $other)
{
Expand All @@ -71,8 +66,6 @@ public function orX(ComparatorInterface $other)

/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Visitor\Visitee::accept()
*/
public function accept(VisitorInterface $visitor)
{
Expand Down
3 changes: 1 addition & 2 deletions ComparatorVisitor.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Cubiche\Core\Comparable;

use Cubiche\Core\Visitor\Visitor;
Expand All @@ -22,8 +23,6 @@ abstract class ComparatorVisitor extends Visitor implements ComparatorVisitorInt
{
/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Visitor\Visitor::visit()
*/
public function visit(VisiteeInterface $visitee)
{
Expand Down
5 changes: 1 addition & 4 deletions Custom.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Cubiche\Core\Comparable;

use Cubiche\Core\Delegate\Delegate;
Expand All @@ -34,8 +35,6 @@ public function __construct(callable $callable)

/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Comparable\Comparator::compare()
*/
public function compare($a, $b)
{
Expand All @@ -44,8 +43,6 @@ public function compare($a, $b)

/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Comparable\Comparator::acceptComparatorVisitor()
*/
public function acceptComparatorVisitor(ComparatorVisitorInterface $visitor)
{
Expand Down
7 changes: 1 addition & 6 deletions MultiComparator.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Cubiche\Core\Comparable;

/**
Expand Down Expand Up @@ -55,8 +56,6 @@ public function secondComparator()

/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Comparable\ComparatorInterface::compare()
*/
public function compare($a, $b)
{
Expand All @@ -67,8 +66,6 @@ public function compare($a, $b)

/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Comparable\ComparatorInterface::reverse()
*/
public function reverse()
{
Expand All @@ -77,8 +74,6 @@ public function reverse()

/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Comparable\Comparator::acceptComparatorVisitor()
*/
public function acceptComparatorVisitor(ComparatorVisitorInterface $visitor)
{
Expand Down
7 changes: 1 addition & 6 deletions ReverseComparator.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Cubiche\Core\Comparable;

/**
Expand Down Expand Up @@ -43,8 +44,6 @@ public function comparator()

/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Comparable\ComparatorInterface::compare()
*/
public function compare($a, $b)
{
Expand All @@ -53,8 +52,6 @@ public function compare($a, $b)

/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Comparable\ComparatorInterface::reverse()
*/
public function reverse()
{
Expand All @@ -63,8 +60,6 @@ public function reverse()

/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Comparable\ComparatorInterface::acceptComparatorVisitor()
*/
public function acceptComparatorVisitor(ComparatorVisitorInterface $visitor)
{
Expand Down
7 changes: 1 addition & 6 deletions SelectorComparator.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Cubiche\Core\Comparable;

use Cubiche\Core\Selector\SelectorInterface;
Expand Down Expand Up @@ -57,8 +58,6 @@ public function order()

/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Comparable\ComparatorInterface::compare()
*/
public function compare($a, $b)
{
Expand All @@ -67,8 +66,6 @@ public function compare($a, $b)

/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Comparable\ComparatorInterface::reverse()
*/
public function reverse()
{
Expand All @@ -77,8 +74,6 @@ public function reverse()

/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Comparable\ComparatorInterface::acceptComparatorVisitor()
*/
public function acceptComparatorVisitor(ComparatorVisitorInterface $visitor)
{
Expand Down
3 changes: 1 addition & 2 deletions Tests/Fixtures/ComparableObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Cubiche\Core\Comparable\Tests\Fixtures;

use Cubiche\Core\Comparable\ComparableInterface;
Expand Down Expand Up @@ -43,8 +44,6 @@ public function value()

/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Comparable\ComparableInterface::compareTo()
*/
public function compareTo($other)
{
Expand Down
3 changes: 1 addition & 2 deletions Tests/Units/AbstractComparatorTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Cubiche\Core\Comparable\Tests\Units;

use Cubiche\Core\Comparable\AbstractComparator;
Expand Down Expand Up @@ -53,8 +54,6 @@ public function testMagicCall()

/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Comparable\Tests\Units\ComparatorInterfaceTestCase::compareDataProvider()
*/
protected function compareDataProvider()
{
Expand Down
5 changes: 1 addition & 4 deletions Tests/Units/ComparatorInterfaceTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Cubiche\Core\Comparable\Tests\Units;

use Cubiche\Core\Comparable\Comparator;
Expand Down Expand Up @@ -112,8 +113,6 @@ public function testMagicCall()

/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Visitor\Tests\Units\VisiteeInterfaceTestCase::visitorInterface()
*/
protected function visitorInterface()
{
Expand All @@ -122,8 +121,6 @@ protected function visitorInterface()

/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Visitor\Tests\Units\VisiteeInterfaceTestCase::acceptActualVisitorMethod()
*/
protected function acceptActualVisitorMethod()
{
Expand Down
3 changes: 1 addition & 2 deletions Tests/Units/ComparatorTests.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Cubiche\Core\Comparable\Tests\Units;

use Cubiche\Core\Comparable\Comparator;
Expand All @@ -22,8 +23,6 @@ class ComparatorTests extends AbstractComparatorTestCase
{
/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Visitor\Tests\Units\VisiteeInterfaceTestCase::shouldVisitMethod()
*/
protected function shouldVisitMethod()
{
Expand Down
5 changes: 1 addition & 4 deletions Tests/Units/ComparatorVisitorTests.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Cubiche\Core\Comparable\Tests\Units;

use Cubiche\Core\Comparable\ComparatorInterface;
Expand All @@ -21,8 +22,6 @@ class ComparatorVisitorTests extends VisitorTestCase
{
/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Visitor\Tests\Units\VisitorInterfaceTestCase::visiteeInterface()
*/
protected function visiteeInterface()
{
Expand All @@ -31,8 +30,6 @@ protected function visiteeInterface()

/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Visitor\Tests\Units\VisitorInterfaceTestCase::shouldVisitMethod()
*/
protected function shouldVisitMethod()
{
Expand Down
7 changes: 1 addition & 6 deletions Tests/Units/CustomTests.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Cubiche\Core\Comparable\Tests\Units;

use Cubiche\Core\Comparable\Comparator;
Expand All @@ -22,8 +23,6 @@ class CustomTests extends AbstractComparatorTestCase
{
/**
* {@inheritdoc}
*
* @see \Cubiche\Tests\TestCase::defaultConstructorArguments()
*/
protected function defaultConstructorArguments()
{
Expand All @@ -36,8 +35,6 @@ protected function defaultConstructorArguments()

/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Comparable\Tests\Units\ComparatorInterfaceTestCase::compareDataProvider()
*/
protected function compareDataProvider()
{
Expand All @@ -50,8 +47,6 @@ protected function compareDataProvider()

/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Visitor\Tests\Units\VisiteeInterfaceTestCase::shouldVisitMethod()
*/
protected function shouldVisitMethod()
{
Expand Down
7 changes: 1 addition & 6 deletions Tests/Units/MultiComparatorTests.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Cubiche\Core\Comparable\Tests\Units;

use Cubiche\Core\Comparable\Comparator;
Expand All @@ -23,8 +24,6 @@ class MultiComparatorTests extends AbstractComparatorTestCase
{
/**
* {@inheritdoc}
*
* @see \Cubiche\Tests\TestCase::defaultConstructorArguments()
*/
protected function defaultConstructorArguments()
{
Expand All @@ -38,8 +37,6 @@ protected function defaultConstructorArguments()

/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Comparable\Tests\Units\ComparatorInterfaceTestCase::compareDataProvider()
*/
protected function compareDataProvider()
{
Expand All @@ -54,8 +51,6 @@ protected function compareDataProvider()

/**
* {@inheritdoc}
*
* @see \Cubiche\Core\Visitor\Tests\Units\VisiteeInterfaceTestCase::shouldVisitMethod()
*/
protected function shouldVisitMethod()
{
Expand Down

0 comments on commit 5017b70

Please sign in to comment.