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

16 строки
257 B
PHP

<?php
namespace EJ\HeatMap;
class HeatMapCell {
public function showContent ($value) {
$this -> showContent = $value;
return $this;
}
public function showColor ($value) {
$this -> showColor = $value;
return $this;
}
}
?>