mirror of
https://github.com/Intervention/image.git
synced 2025-02-07 14:20:37 +01:00
Merge pull request #661 from iWader/feature-fluent-abstract-font
Make AbstractFont a fluent interface
This commit is contained in:
commit
5b6ed8a872
@ -82,6 +82,8 @@ abstract class AbstractFont
|
||||
public function text($text)
|
||||
{
|
||||
$this->text = $text;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -103,6 +105,8 @@ abstract class AbstractFont
|
||||
public function size($size)
|
||||
{
|
||||
$this->size = $size;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -124,6 +128,8 @@ abstract class AbstractFont
|
||||
public function color($color)
|
||||
{
|
||||
$this->color = $color;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -145,6 +151,8 @@ abstract class AbstractFont
|
||||
public function angle($angle)
|
||||
{
|
||||
$this->angle = $angle;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -166,6 +174,8 @@ abstract class AbstractFont
|
||||
public function align($align)
|
||||
{
|
||||
$this->align = $align;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -187,6 +197,8 @@ abstract class AbstractFont
|
||||
public function valign($valign)
|
||||
{
|
||||
$this->valign = $valign;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -208,6 +220,8 @@ abstract class AbstractFont
|
||||
public function file($file)
|
||||
{
|
||||
$this->file = $file;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user