Update to Drupal 8.0.1. For more information, see https://www.drupal.org/node/2627402
This commit is contained in:
parent
013aaaf2ff
commit
1a0e9d9fac
153 changed files with 1268 additions and 670 deletions
core/lib/Drupal/Core/DependencyInjection/Compiler
|
@ -99,10 +99,10 @@ class TaggedHandlersPass implements CompilerPassInterface {
|
|||
if ($param->getClass()) {
|
||||
$interface = $param->getClass();
|
||||
}
|
||||
else if ($param->getName() === 'id') {
|
||||
elseif ($param->getName() === 'id') {
|
||||
$id_pos = $pos;
|
||||
}
|
||||
else if ($param->getName() === 'priority') {
|
||||
elseif ($param->getName() === 'priority') {
|
||||
$priority_pos = $pos;
|
||||
}
|
||||
else {
|
||||
|
|
Reference in a new issue