php-ej1-demos/EJ/Diagram/Shadow.php

21 строка
331 B
PHP
Исходник Обычный вид История

2021-11-12 13:57:43 +03:00
<?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;
}
}
?>