/home/techb158/ileadtechnology.com/vendor/league/glide/src/Manipulators
Edit: /home/techb158/ileadtechnology.com/vendor/league/glide/src/Manipulators/Orientation.php (843B)
getOrientation();
if ('auto' === $orientation) {
return $image->orientate();
}
return $image->rotate($orientation);
}
/**
* Resolve orientation.
*
* @return string The resolved orientation.
*/
public function getOrientation()
{
if (in_array($this->or, ['auto', '0', '90', '180', '270'], true)) {
return $this->or;
}
return 'auto';
}
}