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

WysiwygModel::setLimit()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 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
}