1 | <?php |
||
25 | abstract class AbstractTypeLine extends AbstractType implements ComparableInterface |
||
26 | { |
||
27 | /** |
||
28 | * Is Line Smooth? |
||
29 | * @var boolean |
||
30 | */ |
||
31 | protected $isSmooth = false; |
||
32 | |||
33 | /** |
||
34 | * Is Line Smooth? |
||
35 | * |
||
36 | * @return boolean |
||
37 | */ |
||
38 | 16 | public function getIsSmooth(){ |
|
41 | |||
42 | /** |
||
43 | * Set Line Smoothness |
||
44 | * |
||
45 | * @param boolean $value |
||
46 | * @return $this |
||
47 | */ |
||
48 | public function setIsSmooth($value = true) |
||
53 | |||
54 | |||
55 | } |
||
56 |