예제 #1
0
 /**
  * {@inheritdoc}
  */
 public function getPriority()
 {
     return $this->proxyFixer->getPriority();
 }
예제 #2
0
 /**
  * @dataProvider getFixersPriorityCases
  */
 public function testFixersPriority(FixerInterface $first, FixerInterface $second)
 {
     $this->assertLessThan($first->getPriority(), $second->getPriority());
 }