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

16 строки
255 B
PHP
Исходник Постоянная ссылка Обычный вид История

2022-12-22 11:48:22 +03:00
<?php
namespace EJ\Kanban;
class Workflow {
public function key ($value) {
$this -> key = $value;
return $this;
}
public function allowedTransitions ($value) {
$this -> allowedTransitions = $value;
return $this;
}
}
?>