1 | <?php |
||
26 | trait CopyBasedIntroductionTrait |
||
27 | { |
||
28 | use CopyTrait; |
||
|
|||
29 | use IntroductionTrait; |
||
30 | use CopyBasedIntroduction { |
||
31 | CopyBasedIntroduction::getIntroduction insteadof IntroductionTrait; |
||
32 | CopyBasedIntroduction::setIntroduction insteadof IntroductionTrait; |
||
33 | CopyBasedIntroduction::getCopy insteadof CopyTrait; |
||
34 | CopyBasedIntroduction::setCopy insteadof CopyTrait; |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * Require by Traits\Introduction |
||
39 | * |
||
40 | * @var integer $copyIntroWordCount When an introduction is not set, this is |
||
41 | * the number of words to trim {@see getCopy copy} to, to create the |
||
42 | * introduction. |
||
43 | */ |
||
44 | protected $copyIntroWordCount = 30; |
||
45 | } |
||
46 |
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.