21 строка
331 B
PHP
21 строка
331 B
PHP
|
<?php
|
||
|
namespace EJ\Diagram;
|
||
|
class Shadow {
|
||
|
|
||
|
public function angle ($value) {
|
||
|
$this -> angle = $value;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function distance ($value) {
|
||
|
$this -> distance = $value;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function opacity ($value) {
|
||
|
$this -> opacity = $value;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
?>
|