21 строка
340 B
PHP
21 строка
340 B
PHP
<?php
|
|
namespace EJ\DigitalGauge;
|
|
class Font {
|
|
|
|
public function fontFamily ($value) {
|
|
$this -> fontFamily = $value;
|
|
return $this;
|
|
}
|
|
|
|
public function fontStyle ($value) {
|
|
$this -> fontStyle = $value;
|
|
return $this;
|
|
}
|
|
|
|
public function size ($value) {
|
|
$this -> size = $value;
|
|
return $this;
|
|
}
|
|
|
|
}
|
|
?>
|