App\Traits\Imageable::storeFile PHP 메소드

storeFile() 공개 메소드

public storeFile ( $filePath )
    public function storeFile($filePath)
    {
        $image = new ImageProcessor($filePath, $this->getMaxDimensions(), $this->getMaxFileSize());
        $image->process();
        $this->_storeFile($image->inputPath, $image->ext());
    }