@@ 790-792 (lines=3) @@ | ||
787 | return $this->manager->make(app('League\Flysystem\MountManager')->read($this->image->location())); |
|
788 | } |
|
789 | ||
790 | if (is_string($this->image) && str_is('*://*', $this->image)) { |
|
791 | return $this->manager->make(app('League\Flysystem\MountManager')->read($this->image)); |
|
792 | } |
|
793 | ||
794 | if ($this->image instanceof File) { |
|
795 | return $this->manager->make($this->image->read()); |
|
@@ 820-822 (lines=3) @@ | ||
817 | return app('League\Flysystem\MountManager')->read($this->image->location()); |
|
818 | } |
|
819 | ||
820 | if (is_string($this->image) && str_is('*://*', $this->image)) { |
|
821 | return app('League\Flysystem\MountManager')->read($this->image); |
|
822 | } |
|
823 | ||
824 | if ($this->image instanceof File) { |
|
825 | return $this->image->read(); |