Alter Version
This commit is contained in:
36
vendor/PhpSpreadsheet/RichText/ITextElement.php
vendored
Normal file
36
vendor/PhpSpreadsheet/RichText/ITextElement.php
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
namespace PhpOffice\PhpSpreadsheet\RichText;
|
||||
|
||||
interface ITextElement
|
||||
{
|
||||
/**
|
||||
* Get text.
|
||||
*
|
||||
* @return string Text
|
||||
*/
|
||||
public function getText();
|
||||
|
||||
/**
|
||||
* Set text.
|
||||
*
|
||||
* @param $text string Text
|
||||
*
|
||||
* @return ITextElement
|
||||
*/
|
||||
public function setText($text);
|
||||
|
||||
/**
|
||||
* Get font.
|
||||
*
|
||||
* @return null|\PhpOffice\PhpSpreadsheet\Style\Font
|
||||
*/
|
||||
public function getFont();
|
||||
|
||||
/**
|
||||
* Get hash code.
|
||||
*
|
||||
* @return string Hash code
|
||||
*/
|
||||
public function getHashCode();
|
||||
}
|
||||
Reference in New Issue
Block a user