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

16 строки
225 B
PHP

<?php
namespace EJ\Kanban;
class Header {
public function text ($value) {
$this -> text = $value;
return $this;
}
public function key ($value) {
$this -> key = $value;
return $this;
}
}
?>