Files
intranet/app/Alias/Excel/Style/Mes.php

19 lines
357 B
PHP
Raw Normal View History

2020-12-01 17:23:13 -03:00
<?php
namespace App\Alias\Excel\Style;
use Slam\Excel\Helper\CellStyleInterface;
use Slam\Excel\Pear\Writer\Format;
class Mes implements CellStyleInterface
{
public function decorateValue($value)
{
return $value;
}
public function styleCell(Format $format): void
{
$format->setNumFormat('mmm-YY');
$format->setAlign('center');
}
}