public function AbstractAnnotationLoaderTest::getReader in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/routing/Tests/Loader/AbstractAnnotationLoaderTest.php \Symfony\Component\Routing\Tests\Loader\AbstractAnnotationLoaderTest::getReader()
3 calls to AbstractAnnotationLoaderTest::getReader()
- AnnotationClassLoaderTest::setUp in vendor/symfony/ routing/ Tests/ Loader/ AnnotationClassLoaderTest.php 
- AnnotationDirectoryLoaderTest::setUp in vendor/symfony/ routing/ Tests/ Loader/ AnnotationDirectoryLoaderTest.php 
- AnnotationFileLoaderTest::setUp in vendor/symfony/ routing/ Tests/ Loader/ AnnotationFileLoaderTest.php 
File
- vendor/symfony/ routing/ Tests/ Loader/ AbstractAnnotationLoaderTest.php, line 16 
Class
Namespace
Symfony\Component\Routing\Tests\LoaderCode
public function getReader() {
  return $this
    ->getMockBuilder('Doctrine\\Common\\Annotations\\Reader')
    ->disableOriginalConstructor()
    ->getMock();
}