Update to drupal 8.0.0-rc1. For more information, see https://www.drupal.org/node/2582663
This commit is contained in:
parent
eb34d130a8
commit
f32e58e4b1
8476 changed files with 211648 additions and 170042 deletions
6
vendor/doctrine/common/tests/Doctrine/Tests/Common/ClassLoaderTest/ClassA.class.php
vendored
Normal file
6
vendor/doctrine/common/tests/Doctrine/Tests/Common/ClassLoaderTest/ClassA.class.php
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class ClassLoaderTest_ClassA
|
||||
{
|
||||
|
||||
}
|
||||
6
vendor/doctrine/common/tests/Doctrine/Tests/Common/ClassLoaderTest/ClassB.class.php
vendored
Normal file
6
vendor/doctrine/common/tests/Doctrine/Tests/Common/ClassLoaderTest/ClassB.class.php
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class ClassLoaderTest_ClassB
|
||||
{
|
||||
|
||||
}
|
||||
6
vendor/doctrine/common/tests/Doctrine/Tests/Common/ClassLoaderTest/ClassC.class.php
vendored
Normal file
6
vendor/doctrine/common/tests/Doctrine/Tests/Common/ClassLoaderTest/ClassC.class.php
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class ClassLoaderTest_ClassC
|
||||
{
|
||||
|
||||
}
|
||||
5
vendor/doctrine/common/tests/Doctrine/Tests/Common/ClassLoaderTest/ClassD.php
vendored
Normal file
5
vendor/doctrine/common/tests/Doctrine/Tests/Common/ClassLoaderTest/ClassD.php
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<?php
|
||||
|
||||
namespace ClassLoaderTest;
|
||||
|
||||
class ClassD {}
|
||||
5
vendor/doctrine/common/tests/Doctrine/Tests/Common/ClassLoaderTest/ClassE.php
vendored
Normal file
5
vendor/doctrine/common/tests/Doctrine/Tests/Common/ClassLoaderTest/ClassE.php
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<?php
|
||||
|
||||
namespace ClassLoaderTest;
|
||||
|
||||
class ClassE {}
|
||||
0
vendor/doctrine/common/tests/Doctrine/Tests/Common/ClassLoaderTest/EmptyFile.class.php
vendored
Normal file
0
vendor/doctrine/common/tests/Doctrine/Tests/Common/ClassLoaderTest/EmptyFile.class.php
vendored
Normal file
38
vendor/doctrine/common/tests/Doctrine/Tests/Common/ClassLoaderTest/ExternalLoader.php
vendored
Normal file
38
vendor/doctrine/common/tests/Doctrine/Tests/Common/ClassLoaderTest/ExternalLoader.php
vendored
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
<?php
|
||||
|
||||
namespace ClassLoaderTest;
|
||||
|
||||
class ExternalLoader
|
||||
{
|
||||
public static function registerStatic() {
|
||||
spl_autoload_register(array('ClassLoaderTest\ExternalLoader', 'load1'));
|
||||
spl_autoload_register(array('ClassLoaderTest\ExternalLoader', 'load2'));
|
||||
spl_autoload_register('ClassLoaderTest\ExternalLoader::load3');
|
||||
}
|
||||
|
||||
public static function unregisterStatic() {
|
||||
spl_autoload_unregister(array('ClassLoaderTest\ExternalLoader', 'load1'));
|
||||
spl_autoload_unregister(array('ClassLoaderTest\ExternalLoader', 'load2'));
|
||||
spl_autoload_unregister('ClassLoaderTest\ExternalLoader::load3');
|
||||
}
|
||||
|
||||
public static function load1() {}
|
||||
|
||||
protected static function load2() {}
|
||||
|
||||
protected static function load3() {}
|
||||
|
||||
public function register() {
|
||||
spl_autoload_register(array($this, 'load4'));
|
||||
spl_autoload_register(array($this, 'load5'));
|
||||
}
|
||||
|
||||
public function unregister() {
|
||||
spl_autoload_unregister(array($this, 'load4'));
|
||||
spl_autoload_unregister(array($this, 'load5'));
|
||||
}
|
||||
|
||||
public function load4() {}
|
||||
|
||||
protected function load5() {}
|
||||
}
|
||||
5
vendor/doctrine/common/tests/Doctrine/Tests/Common/ClassLoaderTest/InterfaceA.class.php
vendored
Normal file
5
vendor/doctrine/common/tests/Doctrine/Tests/Common/ClassLoaderTest/InterfaceA.class.php
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<?php
|
||||
|
||||
interface ClassLoaderTest_InterfaceA
|
||||
{
|
||||
}
|
||||
5
vendor/doctrine/common/tests/Doctrine/Tests/Common/ClassLoaderTest/TraitA.class.php
vendored
Normal file
5
vendor/doctrine/common/tests/Doctrine/Tests/Common/ClassLoaderTest/TraitA.class.php
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<?php
|
||||
|
||||
trait ClassLoaderTest_TraitA
|
||||
{
|
||||
}
|
||||
Reference in a new issue