1
0
mirror of https://github.com/Intervention/image.git synced 2025-09-03 10:53:01 +02:00

Rename ImageManager::make to ImageManager::read

This commit is contained in:
Oliver Vogel
2023-10-01 09:59:05 +02:00
parent 635567e9c2
commit 764c6f3843
3 changed files with 6 additions and 6 deletions

View File

@@ -20,7 +20,7 @@ Intervention Image is a **image handling and manipulation library written in PHP
$manager = new ImageManager('gd')
// open an image file
$image = $manager->make('images/example.gif');
$image = $manager->read('images/example.gif');
// resize image instance
$image->resize(height: 300);