����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.137.150.203 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/./gltevjme/cbt.bofirm.com/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/ |
Upload File : |
<?php namespace PhpOffice\PhpSpreadsheet\RichText; use PhpOffice\PhpSpreadsheet\Style\Font; class Run extends TextElement implements ITextElement { /** * Font. * * @var Font */ private $font; /** * Create a new Run instance. * * @param string $pText Text */ public function __construct($pText = '') { parent::__construct($pText); // Initialise variables $this->font = new Font(); } /** * Get font. * * @return null|\PhpOffice\PhpSpreadsheet\Style\Font */ public function getFont() { return $this->font; } /** * Set font. * * @param Font $pFont Font * * @return $this */ public function setFont(?Font $pFont = null) { $this->font = $pFont; return $this; } /** * Get hash code. * * @return string Hash code */ public function getHashCode() { return md5( $this->getText() . $this->font->getHashCode() . __CLASS__ ); } }