retro/stubs/OC_Image.php
Michel Roux 02bc3602e2
All checks were successful
retro / xml (push) Successful in 25s
retro / php (push) Successful in 57s
retro / nodejs (push) Successful in 59s
retro / release (push) Has been skipped
chore: ⬆️ update vite and start working on preview
2025-01-10 23:49:33 +01:00

11 lines
139 B
PHP

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