| 1 | <?php |
||
| 8 | abstract class ControllerBase extends CoreControllerBase { |
||
|
|
|||
| 9 | |||
| 10 | /** |
||
| 11 | * The items_per_page configuration value. |
||
| 12 | * |
||
| 13 | * @var int |
||
| 14 | */ |
||
| 15 | protected $itemsPerPage; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * ControllerBase constructor. |
||
| 19 | * |
||
| 20 | * @param \Drupal\Core\Config\ImmutableConfig $config |
||
| 21 | * The module configuration. |
||
| 22 | */ |
||
| 23 | public function __construct(ImmutableConfig $config) { |
||
| 26 | } |
||
| 27 |