Array.php
1 year ago
Broken.php
1 year ago
ClassWithCtor.php
1 year ago
ComplexClassWithCtor.php
1 year ago
DependencyInjector.php
1 year ago
DerivedClass.php
1 year ago
DerivedClass2.php
1 year ago
FactoryMethod.php
1 year ago
FactoryMethodWithError.php
1 year ago
JsonMapperCommentsDiscardedException.php
1 year ago
JsonMapperForCheckingAllowedPaths.php
1 year ago
Logger.php
1 year ago
MapsWithSetters.php
1 year ago
Php7TypedClass.php
1 year ago
Php7_1TypedClass.php
1 year ago
PrivateWithSetter.php
1 year ago
Simple.php
1 year ago
SimpleBase.php
1 year ago
SimpleBaseWithMissingDiscrimType.php
1 year ago
ValueObject.php
1 year ago
DependencyInjector.php
27 lines
| 1 | <?php |
| 2 | class JsonMapperTest_DependencyInjector extends \apimatic\jsonmapper\JsonMapper |
| 3 | { |
| 4 | /** |
| 5 | * Create a new object of the given type. |
| 6 | * |
| 7 | * This method exists to be overwritten in child classes, |
| 8 | * so you can do dependency injection or so. |
| 9 | * |
| 10 | * @param string $class Class name to instantiate |
| 11 | * @param object $jobject Use jobject for constructor args |
| 12 | * @param bool $forMultipleTypes True if looking to map for multiple types, Default: false |
| 13 | * |
| 14 | * @return object Freshly created object |
| 15 | */ |
| 16 | public function createInstance( |
| 17 | $class, &$jobject = null, $forMultipleTypes = false |
| 18 | ) { |
| 19 | $object = parent::createInstance($class, $jobject, $forMultipleTypes); |
| 20 | |
| 21 | //dummy dependency injection |
| 22 | $object->db = 'database'; |
| 23 | |
| 24 | return $object; |
| 25 | } |
| 26 | } |
| 27 | ?> |