File "Orientation.php"
Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/spatie/image/src/Enums/Orientation.php
File size: 239 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spatie\Image\Enums;
enum Orientation: int
{
case Rotate0 = 0;
case Rotate90 = 90;
case Rotate180 = 180;
case Rotate270 = 270;
public function degrees(): int
{
return $this->value;
}
}