php-ej1-demos/EJ/HeatMap/Row.php

16 строки
255 B
PHP

<?php
namespace EJ\HeatMap;
class Row {
public function propertyName ($value) {
$this -> propertyName = $value;
return $this;
}
public function displayName ($value) {
$this -> displayName = $value;
return $this;
}
}
?>