<?php
namespace Maatwebsite\Excel;
use PhpOffice\PhpSpreadsheet\Calculation\Exception;
use PhpOffice\PhpSpreadsheet\Cell\Cell as SpreadsheetCell;
use PhpOffice\PhpSpreadsheet\RichText\RichText;
use PhpOffice\PhpSpreadsheet\Style\NumberFormat;
use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
class Cell
{
use DelegatedMacroable;
private $cell;
public function __construct(SpreadsheetCell $cell)
{
$this->cell = $cell;
}
public static function make(Worksheet $worksheet, string $coordinate)
{
return new static($worksheet->getCell($coordinate));
}
public function getDelegate(): SpreadsheetCell
{