| 1 | <?php |
||
| 13 | class PropertyException extends \RuntimeException |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @param string $property |
||
| 17 | * @param object $class |
||
| 18 | * |
||
| 19 | * @return PropertyException |
||
| 20 | */ |
||
| 21 | 6 | public static function undefinedProperty($property, $class) |
|
| 25 | |||
| 26 | /** |
||
| 27 | * @param array $lost |
||
| 28 | * @param object $class |
||
| 29 | * |
||
| 30 | * @return PropertyException |
||
| 31 | */ |
||
| 32 | 2 | public static function noRequiredProperties(array $lost, $class) |
|
| 36 | } |
||
| 37 |