for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Rvdlee\ZfImageResizer\Traits;
use Rvdlee\ZfImageResizer\Model\Image;
trait ResizableTrait
{
/**
* This function will return the properties that are resizable.
*
* @return array
*/
public function getResizables(): array
return self::RESIZEABLES;
Rvdlee\ZfImageResizer\Tr...zableTrait::RESIZEABLES
}
* This function will return the sizes that are accepted by the resize service.
public function getSizes(): array
return self::SIZES;
Rvdlee\ZfImageResizer\Traits\ResizableTrait::SIZES