php-ej1-demos/EJ/Kanban/ScrollSetting.php

21 строка
357 B
PHP

<?php
namespace EJ\Kanban;
class ScrollSetting {
public function height ($value) {
$this -> height = $value;
return $this;
}
public function width ($value) {
$this -> width = $value;
return $this;
}
public function allowFreezeSwimlane ($value) {
$this -> allowFreezeSwimlane = $value;
return $this;
}
}
?>