retro/stubs/OC_Image.php

11 lines
139 B
PHP
Raw Permalink Normal View History

<?php
declare(strict_types=1);
use OCP\IImage;
interface OC_Image extends IImage
{
public function loadFromFile($imagePath = false);
}