@@ -6,8 +6,6 @@ |
||
6 | 6 | use Symfony\Component\Config\FileLocator; |
7 | 7 | use Symfony\Component\HttpKernel\DependencyInjection\Extension; |
8 | 8 | use Symfony\Component\DependencyInjection\Loader; |
9 | -use Symfony\Component\DependencyInjection\Definition; |
|
10 | -use Symfony\Component\DependencyInjection\Reference; |
|
11 | 9 | |
12 | 10 | /** |
13 | 11 | * This is the class that loads and manages your bundle configuration |
@@ -65,7 +65,7 @@ |
||
65 | 65 | ]; |
66 | 66 | $this->tasks[get_class($task)] = $prioritized; |
67 | 67 | |
68 | - $sortFunc = function ($a, $b) { |
|
68 | + $sortFunc = function($a, $b) { |
|
69 | 69 | return $a['priority'] > $b['priority'] ? -1 : 1; |
70 | 70 | }; |
71 | 71 | uasort($this->tasks, $sortFunc); |