Passed
Push — master ( 06bf02...b3147e )
by Ferry
03:01
created

WysiwygModel   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 2
eloc 4
dl 0
loc 18
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getLimit() 0 3 1
A setLimit() 0 3 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: User
5
 * Date: 4/21/2019
6
 * Time: 10:51 PM
7
 */
8
9
namespace crocodicstudio\crudbooster\types\wysiwyg;
10
11
use crocodicstudio\crudbooster\models\ColumnModel;
12
13
class WysiwygModel extends ColumnModel
14
{
15
    private $limit;
16
17
    /**
18
     * @return mixed
19
     */
20
    public function getLimit()
21
    {
22
        return $this->limit;
23
    }
24
25
    /**
26
     * @param mixed $limit
27
     */
28
    public function setLimit($limit)
29
    {
30
        $this->limit = $limit;
31
    }
32
}