PhpSpreadsheet/src/PhpSpreadsheet/RichText/ITextElement.php
Adrien Crivelli 29208e9d99
Remove boilerplates
Because it is a budren to maintain and LGPL 2.1 does not require
them, but only suggest them:

> To apply these terms, attach the following notices to the library.
> It is **safest** to attach them to the start of each source file
> to most effectively convey the exclusion of warranty; and each
> file **should** have at least the "copyright" line and a pointer
> to where the full notice is found.

https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html#SEC4
2017-09-30 22:12:28 +09:00

37 lines
559 B
PHP

<?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 \PhpOffice\PhpSpreadsheet\Style\Font
*/
public function getFont();
/**
* Get hash code.
*
* @return string Hash code
*/
public function getHashCode();
}