ok

Mini Shell

Direktori : /home2/selectio/www/a1tex.in/vendor/spatie/image-optimizer/src/
Upload File :
Current File : /home2/selectio/www/a1tex.in/vendor/spatie/image-optimizer/src/Image.php

<?php

namespace Spatie\ImageOptimizer;

use InvalidArgumentException;

class Image
{
    protected $pathToImage = '';

    public function __construct(string $pathToImage)
    {
        if (! file_exists($pathToImage)) {
            throw new InvalidArgumentException("`{$pathToImage}` does not exist");
        }

        $this->pathToImage = $pathToImage;
    }

    public function mime(): string
    {
        return mime_content_type($this->pathToImage);
    }

    public function path(): string
    {
        return $this->pathToImage;
    }

    public function extension(): string
    {
        $extension = pathinfo($this->pathToImage, PATHINFO_EXTENSION);

        return strtolower($extension);
    }
}

Zerion Mini Shell 1.0