| 1 | <?php |
||
| 7 | class KeyConflictException extends Exception |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | protected $key; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var array |
||
| 16 | */ |
||
| 17 | protected $mine; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var array |
||
| 21 | */ |
||
| 22 | protected $theirs; |
||
| 23 | |||
| 24 | public function __construct($key, $mine, $theirs) |
||
| 32 | |||
| 33 | public function __toString() |
||
| 53 | } |
||
| 54 |