Skip to content
This repository was archived by the owner on Nov 27, 2020. It is now read-only.

Commit 7e78a47

Browse files
committed
merged branch benlumley/master (PR #360)
Commits ------- 0bf4256 Fixed indenting of upgrade instructions so that the file displays correctly when rendered by github. Discussion ---------- Fixed indenting of code example in UPGRADE.md Indenting of first code example needed to be increased to make github render it as code.
2 parents 36047d6 + 0bf4256 commit 7e78a47

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

UPGRADE.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,22 +38,22 @@ The default `autoload.php` reads as follows (it has been simplified a lot as
3838
autoloading for libraries and bundles declared in your `composer.json` file is
3939
automatically managed by the Composer autoloader):
4040

41-
<?php
41+
<?php
4242

43-
use Doctrine\Common\Annotations\AnnotationRegistry;
43+
use Doctrine\Common\Annotations\AnnotationRegistry;
4444

45-
$loader = include __DIR__.'/../vendor/autoload.php';
45+
$loader = include __DIR__.'/../vendor/autoload.php';
4646

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';
5050

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+
}
5353

54-
AnnotationRegistry::registerLoader(array($loader, 'loadClass'));
54+
AnnotationRegistry::registerLoader(array($loader, 'loadClass'));
5555

56-
return $loader;
56+
return $loader;
5757

5858
### `app/config/config.yml`
5959

0 commit comments

Comments
 (0)