| 1 | <?php |
||
| 7 | abstract class AbstractPlacer implements PlacerInterface |
||
| 8 | { |
||
| 9 | /** @var int */ |
||
| 10 | protected $imgWidth; |
||
| 11 | /** @var int */ |
||
| 12 | protected $imgHeight; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param int $imgWidth |
||
| 16 | * @param int $imgHeight |
||
| 17 | */ |
||
| 18 | 6 | public function __construct($imgWidth, $imgHeight) |
|
| 23 | |||
| 24 | /** {@inheritdoc} */ |
||
| 25 | 5 | public function getFirstPlaceToTry() |
|
| 29 | } |
||
| 30 |