Files
luos/gulliver/thirdparty/html2ps_pdf/path.point.php
Victor Saisa Lopez 6d9858d6d0 HOR-1738 "Change folder permissions in ProcessMaker" SOLVED
Issue:
    Change folder permissions in ProcessMaker
Cause:
    Nuevo requerimiento
Solution:
    Se cambio los permisos de los files and directories
2016-08-30 13:03:35 -04:00

17 lines
187 B
PHP

<?php
class Point {
var $x;
var $y;
function Point($x, $y) {
$this->x = $x;
$this->y = $y;
}
function _clone() {
return new Point($this->x, $this->y);
}
}
?>