Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
6 / 6 |
|
100.00% |
4 / 4 |
CRAP | |
100.00% |
1 / 1 |
Run | |
100.00% |
6 / 6 |
|
100.00% |
4 / 4 |
4 | |
100.00% |
1 / 1 |
__construct | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
getFont | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
setFont | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
getHashCode | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | /** |
3 | * This file is part of PHPPresentation - A pure PHP library for reading and writing |
4 | * presentations documents. |
5 | * |
6 | * PHPPresentation is free software distributed under the terms of the GNU Lesser |
7 | * General Public License version 3 as published by the Free Software Foundation. |
8 | * |
9 | * For the full copyright and license information, please read the LICENSE |
10 | * file that was distributed with this source code. For the full list of |
11 | * contributors, visit https://github.com/PHPOffice/PHPPresentation/contributors. |
12 | * |
13 | * @see https://github.com/PHPOffice/PHPPresentation |
14 | * |
15 | * @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3 |
16 | */ |
17 | |
18 | declare(strict_types=1); |
19 | |
20 | namespace PhpOffice\PhpPresentation\Shape\RichText; |
21 | |
22 | use PhpOffice\PhpPresentation\Style\Font; |
23 | |
24 | /** |
25 | * Rich text run. |
26 | */ |
27 | class Run extends TextElement implements TextElementInterface |
28 | { |
29 | /** |
30 | * Font. |
31 | * |
32 | * @var Font |
33 | */ |
34 | private $font; |
35 | |
36 | /** |
37 | * @param string $pText Text |
38 | */ |
39 | public function __construct($pText = '') |
40 | { |
41 | // Initialize variables |
42 | $this->setText($pText); |
43 | $this->font = new Font(); |
44 | } |
45 | |
46 | /** |
47 | * Get font. |
48 | */ |
49 | public function getFont(): Font |
50 | { |
51 | return $this->font; |
52 | } |
53 | |
54 | /** |
55 | * Set font. |
56 | * |
57 | * @return self |
58 | */ |
59 | public function setFont(?Font $pFont = null) |
60 | { |
61 | $this->font = $pFont; |
62 | |
63 | return $this; |
64 | } |
65 | |
66 | /** |
67 | * Get hash code. |
68 | */ |
69 | public function getHashCode(): string |
70 | { |
71 | return md5($this->getText() . $this->font->getHashCode() . __CLASS__); |
72 | } |
73 | } |