Разбил файл exceltable на классы

This commit is contained in:
origami11 2017-02-17 17:08:18 +03:00
parent b26e521657
commit 7ce493414e
5 changed files with 135 additions and 132 deletions

17
src/Excel/Number.php Normal file
View file

@ -0,0 +1,17 @@
<?php
class Excel_Number
{
public $value;
function __construct($value)
{
$this->value = intval($value);
}
function getString()
{
return $this->value;
}
}