Go\Aop\Framework\AbstractJoinpointTest::sortingTestSource PHP Method

sortingTestSource() public method

public sortingTestSource ( )
    public function sortingTestSource()
    {
        return array(array(array($this->getMock(AdviceAfter::class), $this->getMock(AdviceBefore::class)), array(AdviceBefore::class, AdviceAfter::class)), array(array($this->getMock(AdviceAfter::class), $this->getMock(AdviceAround::class)), array(AdviceAfter::class, AdviceAround::class)), array(array($this->getMock(AdviceBefore::class), $this->getMock(AdviceAfter::class)), array(AdviceBefore::class, AdviceAfter::class)), array(array($this->getMock(AdviceBefore::class), $this->getMock(AdviceAround::class)), array(AdviceBefore::class, AdviceAround::class)), array(array($this->getMock(AdviceAround::class), $this->getMock(AdviceAfter::class)), array(AdviceAfter::class, AdviceAround::class)), array(array($this->getMock(AdviceAround::class), $this->getMock(AdviceBefore::class)), array(AdviceBefore::class, AdviceAround::class)), array(array($this->getMock(AdviceBefore::class), $this->getMock(AdviceAround::class), $this->getMock(AdviceBefore::class), $this->getMock(AdviceAfter::class)), array(AdviceBefore::class, AdviceBefore::class, AdviceAfter::class, AdviceAround::class)), array(array($forth = $this->getOrderedAdvice(4, 'ForthAdvice'), $first = $this->getOrderedAdvice(1, 'FirstAdvice')), array(get_class($first), get_class($forth))));
    }