/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Image/Transformations/Rotate.php
15 строк
291 B
nuno maduro
[13.x] Adds first-party support for `image` processing (#59276)
08 июл 2026, 02:44
Не верифицирован
08 июл 2026, 02:44
3dd4830
Код
Авторство
О чём код?
<?php namespace Illuminate\Image\Transformations; use Illuminate\Contracts\Image\Transformation; class Rotate implements Transformation { public function __construct( public readonly float $angle, public readonly ?string $background = null, ) { // } }