19 lines
222 B
PHP
19 lines
222 B
PHP
<?php
|
|
|
|
namespace ctiso\Excel;
|
|
|
|
class Number
|
|
{
|
|
public $value;
|
|
|
|
function __construct($value)
|
|
{
|
|
$this->value = (int)$value;
|
|
}
|
|
|
|
function getString()
|
|
{
|
|
return $this->value;
|
|
}
|
|
}
|
|
|