🚀 Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home2
/
birthday
/
event.krishivgroups.in
/
vendor
/
intervention
/
image
/
src
/
Colors
✏️
Editing: Profile.php
<?php declare(strict_types=1); namespace Intervention\Image\Colors; use Intervention\Image\File; use Intervention\Image\Exceptions\RuntimeException; use Intervention\Image\Interfaces\ProfileInterface; class Profile extends File implements ProfileInterface { /** * Create profile object from path in file system * * @throws RuntimeException */ public static function fromPath(string $path): self { return new self(fopen($path, 'r')); } }
💾 Save Changes
❌ Cancel