mirror of
https://github.com/Intervention/image.git
synced 2025-08-25 23:06:13 +02:00
Fix type hinting
This commit is contained in:
@@ -2,7 +2,9 @@
|
|||||||
|
|
||||||
namespace Intervention\Image\Drivers\Abstract;
|
namespace Intervention\Image\Drivers\Abstract;
|
||||||
|
|
||||||
abstract class AbstractFrame
|
use Intervention\Image\Interfaces\FrameInterface;
|
||||||
|
|
||||||
|
abstract class AbstractFrame implements FrameInterface
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Set the frame core
|
* Set the frame core
|
||||||
@@ -12,9 +14,9 @@ abstract class AbstractFrame
|
|||||||
* add more drivers.
|
* add more drivers.
|
||||||
*
|
*
|
||||||
* @param mixed $core
|
* @param mixed $core
|
||||||
* @return AbstractFrame
|
* @return FrameInterface
|
||||||
*/
|
*/
|
||||||
public function setCore($core): self
|
public function setCore($core): FrameInterface
|
||||||
{
|
{
|
||||||
$this->core = $core;
|
$this->core = $core;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user