Test Failed
Push — master ( e3c39f...fe570d )
by Mihail
07:20
created

Apps/Controller/Admin/Contenttag.php (1 issue)

Check that return values of null are not used.

Bug Minor
1
<?php
2
3
namespace Apps\Controller\Admin;
4
5
use Apps\Model\Admin\Contenttag\FormSettings;
6
use Extend\Core\Arch\AdminController;
7
use Ffcms\Core\App;
8
9
/**
10
 * Class Contenttag. Admin controller of widget content tags
11
 * @package Apps\Controller\Admin
12
 */
13
class Contenttag extends AdminController
14
{
15
    const VERSION = '1.0.1';
16
    
17
    public $type = 'widget';
18
19
    /**
20
     * Show and edit widget settings
21
     * @return string
22
     * @throws \Ffcms\Core\Exception\SyntaxException
23
     */
24
    public function actionIndex()
25
    {
26
        // initialize model and pass configs as arg
27
        $model = new FormSettings($this->getConfigs());
28
        
29
        // check if form of depend model is submited
30
        if ($model->send() && $model->validate()) {
31
            $this->setConfigs($model->getAllProperties());
0 ignored issues
show
Are you sure the usage of $model->getAllProperties() targeting Ffcms\Core\Arch\Model::getAllProperties() seems to always return null.

This check looks for function or method calls that always return null and whose return value is used.

class A
{
    function getObject()
    {
        return null;
    }

}

$a = new A();
if ($a->getObject()) {

The method getObject() can return nothing but null, so it makes no sense to use the return value.

The reason is most likely that a function or method is imcomplete or has been reduced for debug purposes.

Loading history...
32
            App::$Session->getFlashBag()->add('success', __('Settings is successful updated'));
33
        }
34
        
35
        // render view output
36
        return $this->view->render('contenttag/index', [
37
           'model' => $model
38
        ]);
39
    }
40
}
41