Chris@0
|
1 <?php
|
Chris@0
|
2
|
Chris@0
|
3 /*
|
Chris@0
|
4 * This file is part of the Prophecy.
|
Chris@0
|
5 * (c) Konstantin Kudryashov <ever.zet@gmail.com>
|
Chris@0
|
6 * Marcello Duarte <marcello.duarte@gmail.com>
|
Chris@0
|
7 *
|
Chris@0
|
8 * For the full copyright and license information, please view the LICENSE
|
Chris@0
|
9 * file that was distributed with this source code.
|
Chris@0
|
10 */
|
Chris@0
|
11
|
Chris@0
|
12 namespace Prophecy\Doubler\ClassPatch;
|
Chris@0
|
13
|
Chris@0
|
14 use Prophecy\Doubler\Generator\Node\ClassNode;
|
Chris@0
|
15 use Prophecy\Doubler\Generator\Node\MethodNode;
|
Chris@0
|
16
|
Chris@0
|
17 /**
|
Chris@0
|
18 * Disable constructor.
|
Chris@0
|
19 * Makes all constructor arguments optional.
|
Chris@0
|
20 *
|
Chris@0
|
21 * @author Konstantin Kudryashov <ever.zet@gmail.com>
|
Chris@0
|
22 */
|
Chris@0
|
23 class DisableConstructorPatch implements ClassPatchInterface
|
Chris@0
|
24 {
|
Chris@0
|
25 /**
|
Chris@0
|
26 * Checks if class has `__construct` method.
|
Chris@0
|
27 *
|
Chris@0
|
28 * @param ClassNode $node
|
Chris@0
|
29 *
|
Chris@0
|
30 * @return bool
|
Chris@0
|
31 */
|
Chris@0
|
32 public function supports(ClassNode $node)
|
Chris@0
|
33 {
|
Chris@0
|
34 return true;
|
Chris@0
|
35 }
|
Chris@0
|
36
|
Chris@0
|
37 /**
|
Chris@0
|
38 * Makes all class constructor arguments optional.
|
Chris@0
|
39 *
|
Chris@0
|
40 * @param ClassNode $node
|
Chris@0
|
41 */
|
Chris@0
|
42 public function apply(ClassNode $node)
|
Chris@0
|
43 {
|
Chris@0
|
44 if (!$node->hasMethod('__construct')) {
|
Chris@0
|
45 $node->addMethod(new MethodNode('__construct', ''));
|
Chris@0
|
46
|
Chris@0
|
47 return;
|
Chris@0
|
48 }
|
Chris@0
|
49
|
Chris@0
|
50 $constructor = $node->getMethod('__construct');
|
Chris@0
|
51 foreach ($constructor->getArguments() as $argument) {
|
Chris@0
|
52 $argument->setDefault(null);
|
Chris@0
|
53 }
|
Chris@0
|
54
|
Chris@0
|
55 $constructor->setCode(<<<PHP
|
Chris@0
|
56 if (0 < func_num_args()) {
|
Chris@0
|
57 call_user_func_array(array('parent', '__construct'), func_get_args());
|
Chris@0
|
58 }
|
Chris@0
|
59 PHP
|
Chris@0
|
60 );
|
Chris@0
|
61 }
|
Chris@0
|
62
|
Chris@0
|
63 /**
|
Chris@0
|
64 * Returns patch priority, which determines when patch will be applied.
|
Chris@0
|
65 *
|
Chris@0
|
66 * @return int Priority number (higher - earlier)
|
Chris@0
|
67 */
|
Chris@0
|
68 public function getPriority()
|
Chris@0
|
69 {
|
Chris@0
|
70 return 100;
|
Chris@0
|
71 }
|
Chris@0
|
72 }
|