/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Image/Transformations/Crop.php
21 строка
433 B
Sebastian Hädrich
[13.x] Improve types in `Image` class (#60890)
26 июл 2026, 16:06
Не верифицирован
26 июл 2026, 16:06
a6c6eac
Код
Авторство
О чём код?
<?php namespace Illuminate\Image\Transformations; use Illuminate\Contracts\Image\Transformation; class Crop implements Transformation { /** * @param positive-int $width * @param positive-int $height */ public function __construct( public readonly int $width, public readonly int $height, public readonly int $x = 0, public readonly int $y = 0, ) { // } }