php-ej1-demos/EJ/RadialMenu/SliderSetting.php

21 строка
353 B
PHP

<?php
namespace EJ\RadialMenu;
class SliderSetting {
public function ticks ($value) {
$this -> ticks = $value;
return $this;
}
public function strokeWidth ($value) {
$this -> strokeWidth = $value;
return $this;
}
public function labelSpace ($value) {
$this -> labelSpace = $value;
return $this;
}
}
?>