| 1 | <?php |
||
| 8 | class ModelPostTypeMismatchException extends \RuntimeException |
||
| 9 | { |
||
| 10 | const MESSAGE_FORMAT = '{modelClass} instantiated with post of type "{givenPostType}", but requires a post of type "{modelPostType}".'; |
||
| 11 | |||
| 12 | protected $modelClass; |
||
| 13 | protected $post; |
||
| 14 | |||
| 15 | public function __construct($modelClass, WP_Post $post) |
||
| 29 | } |
||
| 30 |