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

Commit b66df19

Browse files
committed
Merge branch '2.1' into 2.2
* 2.1: added missing license and type in composer.json (refs #527) added loader variable typehint for easier manipulation in IDEs updated VENDORS for 2.1.9 removed useless "use" statement updated VENDORS for 2.1.8 Update composer.json Conflicts: composer.json composer.lock
2 parents 7de5454 + 4960ae6 commit b66df19

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

app/autoload.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
<?php
22

33
use Doctrine\Common\Annotations\AnnotationRegistry;
4+
use Composer\Autoload\ClassLoader;
45

6+
/**
7+
* @var $loader ClassLoader
8+
*/
59
$loader = require __DIR__.'/../vendor/autoload.php';
610

711
// intl

composer.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{
22
"name": "symfony/framework-standard-edition",
3+
"license": "MIT",
4+
"type": "project",
35
"description": "The \"Symfony Standard Edition\" distribution",
46
"autoload": {
57
"psr-0": { "": "src/" }

src/Acme/DemoBundle/EventListener/ControllerListener.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace Acme\DemoBundle\EventListener;
44

5-
use Symfony\Component\EventDispatcher\Event;
65
use Symfony\Component\HttpKernel\HttpKernelInterface;
76
use Symfony\Component\HttpKernel\Event\FilterControllerEvent;
87
use Acme\DemoBundle\Twig\Extension\DemoExtension;

0 commit comments

Comments
 (0)