This repository was archived by the owner on Nov 27, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -38,22 +38,22 @@ The default `autoload.php` reads as follows (it has been simplified a lot as
38
38
autoloading for libraries and bundles declared in your ` composer.json ` file is
39
39
automatically managed by the Composer autoloader):
40
40
41
- <? php
41
+ <?php
42
42
43
- use Doctrine\Common\Annotations\AnnotationRegistry;
43
+ use Doctrine\Common\Annotations\AnnotationRegistry;
44
44
45
- $loader = include __DIR__.'/../vendor/autoload.php';
45
+ $loader = include __DIR__.'/../vendor/autoload.php';
46
46
47
- // intl
48
- if (!function_exists('intl_get_error_code')) {
49
- require_once __DIR__.'/../vendor/symfony/symfony/src/Symfony/Component/Locale/Resources/stubs/functions.php';
47
+ // intl
48
+ if (!function_exists('intl_get_error_code')) {
49
+ require_once __DIR__.'/../vendor/symfony/symfony/src/Symfony/Component/Locale/Resources/stubs/functions.php';
50
50
51
- $loader-> add('', __DIR__.'/../vendor/symfony/symfony/src/Symfony/Component/Locale/Resources/stubs');
52
- }
51
+ $loader->add('', __DIR__.'/../vendor/symfony/symfony/src/Symfony/Component/Locale/Resources/stubs');
52
+ }
53
53
54
- AnnotationRegistry::registerLoader(array($loader, 'loadClass'));
54
+ AnnotationRegistry::registerLoader(array($loader, 'loadClass'));
55
55
56
- return $loader;
56
+ return $loader;
57
57
58
58
### ` app/config/config.yml `
59
59
You can’t perform that action at this time.
0 commit comments