findAllByName() 공개 메소드

Returns the applications with the passed name.
public findAllByName ( string $name ) : array
$name string Name of the application to return
리턴 array The applications with the name passed as parameter
예제 #1
0
 /**
  * Test if the findAllByName() method returns the correct number of elements.
  *
  * @return null
  */
 public function testFindAllByName()
 {
     $this->assertCount(2, $this->appService->findAllByName('api'));
 }