ameliabooking
/
vendor
/
apimatic
/
jsonmapper
/
tests
/
JsonMapperTest
/
JsonMapperCommentsDiscardedException.php
Array.php
2 years ago
Broken.php
2 years ago
ClassWithCtor.php
2 years ago
ComplexClassWithCtor.php
2 years ago
DependencyInjector.php
2 years ago
DerivedClass.php
2 years ago
DerivedClass2.php
2 years ago
FactoryMethod.php
2 years ago
FactoryMethodWithError.php
2 years ago
JsonMapperCommentsDiscardedException.php
2 years ago
JsonMapperForCheckingAllowedPaths.php
2 years ago
Logger.php
2 years ago
MapsWithSetters.php
2 years ago
Php7TypedClass.php
2 years ago
Php7_1TypedClass.php
2 years ago
PrivateWithSetter.php
2 years ago
Simple.php
2 years ago
SimpleBase.php
2 years ago
SimpleBaseWithMissingDiscrimType.php
2 years ago
ValueObject.php
2 years ago
JsonMapperCommentsDiscardedException.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | use apimatic\jsonmapper\JsonMapperException; |
| 4 | use apimatic\jsonmapper\JsonMapper; |
| 5 | |
| 6 | class JsonMapperCommentsDiscardedException extends JsonMapper |
| 7 | { |
| 8 | /** |
| 9 | * @throws JsonMapperException |
| 10 | */ |
| 11 | function __construct($config) |
| 12 | { |
| 13 | $this->config = $config; |
| 14 | |
| 15 | $this->zendOptimizerPlusExtensionLoaded = true; |
| 16 | |
| 17 | parent::__construct(); |
| 18 | } |
| 19 | } |
| 20 | ?> |