Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / vendor / symfony / dependency-injection / Tests / Fixtures / FactoryDummy.php
1 <?php
2
3 /*
4  * This file is part of the Symfony package.
5  *
6  * (c) Fabien Potencier <fabien@symfony.com>
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11
12 namespace Symfony\Component\DependencyInjection\Tests\Fixtures;
13
14 class FactoryDummy extends FactoryParent
15 {
16     public static function createFactory(): FactoryDummy
17     {
18     }
19
20     public function create(): \stdClass
21     {
22     }
23
24     // Not supported by hhvm
25     public function createBuiltin(): int
26     {
27     }
28
29     public static function createSelf(): self
30     {
31     }
32
33     public static function createParent(): parent
34     {
35     }
36 }
37
38 class FactoryParent
39 {
40 }
41
42 function factoryFunction(): FactoryDummy
43 {
44 }