php-ej1-demos/EJ/Barcode/QuietZone.php

31 строка
494 B
PHP

<?php
namespace EJ\Barcode;
class QuietZone {
public function all ($value) {
$this -> all = $value;
return $this;
}
public function bottom ($value) {
$this -> bottom = $value;
return $this;
}
public function left ($value) {
$this -> left = $value;
return $this;
}
public function right ($value) {
$this -> right = $value;
return $this;
}
public function top ($value) {
$this -> top = $value;
return $this;
}
}
?>