BookStack\Http\Controllers\ImageController::__construct PHP Method

__construct() public method

ImageController constructor.
public __construct ( Image $image, Illuminate\Filesystem\Filesystem $file, ImageRepo $imageRepo )
$image BookStack\Image
$file Illuminate\Filesystem\Filesystem
$imageRepo BookStack\Repos\ImageRepo
    public function __construct(Image $image, File $file, ImageRepo $imageRepo)
    {
        $this->image = $image;
        $this->file = $file;
        $this->imageRepo = $imageRepo;
        parent::__construct();
    }