php-ej1-demos/EJ/CircularGauge/IndicatorsPosition.php

16 строки
234 B
PHP

<?php
namespace EJ\CircularGauge;
class IndicatorsPosition {
public function x ($value) {
$this -> x = $value;
return $this;
}
public function y ($value) {
$this -> y = $value;
return $this;
}
}
?>