| 1 | <?php |
||
| 10 | class CategoryLoopException extends \Exception { |
||
| 11 | |||
| 12 | /** @var Pages */ |
||
| 13 | protected $categoryPath; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param Pages $path |
||
| 17 | */ |
||
| 18 | public function setCategoryPath( Pages $path ) { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Get the path of Pages that comprise the category loop. The first item in this list is also a |
||
| 24 | * child page of the last item. |
||
| 25 | * @return Pages The set of category Pages that comprise the category loop. |
||
| 26 | */ |
||
| 27 | public function getCategoryPath() { |
||
| 30 | |||
| 31 | } |
||
| 32 |