php-ej1-demos/EJ/RangeNavigator/LabelSetting.php

21 строка
356 B
PHP

<?php
namespace EJ\RangeNavigator;
class LabelSetting {
public function higherLevel ($value) {
$this -> higherLevel = $value;
return $this;
}
public function lowerLevel ($value) {
$this -> lowerLevel = $value;
return $this;
}
public function style ($value) {
$this -> style = $value;
return $this;
}
}
?>