1 | <?php |
||
26 | class TextMessage extends \PEIP\Message\StringMessage |
||
27 | { |
||
28 | protected $title; |
||
29 | |||
30 | /** |
||
31 | * @param $content |
||
32 | * @param $title |
||
33 | * |
||
34 | * @return |
||
35 | */ |
||
36 | public function __construct($content, $title) |
||
40 | |||
41 | /** |
||
42 | * @param $title |
||
43 | * |
||
44 | * @return |
||
45 | */ |
||
46 | public function setTitle($title) |
||
50 | |||
51 | /** |
||
52 | * @return |
||
53 | */ |
||
54 | public function getTitle() |
||
58 | |||
59 | /** |
||
60 | * Provides a static build method to create new Instances of this class. |
||
61 | * Implements \PEIP\INF\Base\Buildable. Overwrites GenericMessage::build. |
||
62 | * |
||
63 | * @static |
||
64 | * @implements \PEIP\INF\Base\Buildable |
||
65 | * |
||
66 | * @return bool wether the header is set |
||
67 | */ |
||
68 | public static function build(array $arguments = []) |
||
72 | } |
||
73 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.