You are here

public function AbstractAnnotationLoaderTest::getReader in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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

AbstractAnnotationLoaderTest

Namespace

Symfony\Component\Routing\Tests\Loader

Code

public function getReader() {
  return $this
    ->getMockBuilder('Doctrine\\Common\\Annotations\\Reader')
    ->disableOriginalConstructor()
    ->getMock();
}