| 1 | <?php  | 
            ||
| 25 | class ControllerHelper  | 
            ||
| 26 | { | 
            ||
| 27 | /**  | 
            ||
| 28 | * Tests of creation conditions.  | 
            ||
| 29 | *  | 
            ||
| 30 | * @param array Articles à tester  | 
            ||
| 31 | * @return boolean  | 
            ||
| 32 | */  | 
            ||
| 33 | public function hasSupplierArticles(array $articles)  | 
            ||
| 46 | |||
| 47 | /**  | 
            ||
| 48 | * Tests Order in progress for a supplier.  | 
            ||
| 49 | *  | 
            ||
| 50 | * @param \AppBundle\Entity\Article $articles Articles to test  | 
            ||
| 51 | * @param \Doctrine\Common\Persistence\ObjectManager $etm Named object manager  | 
            ||
| 52 | * @return boolean  | 
            ||
| 53 | */  | 
            ||
| 54 | public function isOrderInProgress(Article $articles, ObjectManager $etm)  | 
            ||
| 66 | }  | 
            ||
| 67 | 
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.