ArticlesUntagAction   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 22
rs 10
c 0
b 0
f 0
wmc 2
lcom 0
cbo 1

2 Methods

Rating   Name   Duplication   Size   Complexity  
A validates() 0 4 1
A execute() 0 3 1
1
<?php
2
/**
3
 * Copyright 2016 - 2018, Cake Development Corporation (http://cakedc.com)
4
 *
5
 * Licensed under The MIT License
6
 * Redistributions of files must retain the above copyright notice.
7
 *
8
 * @copyright Copyright 2016 - 2018, Cake Development Corporation (http://cakedc.com)
9
 * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
10
 */
11
12
namespace CakeDC\Api\Test\App\Service\Action;
13
14
use CakeDC\Api\Exception\ValidationException;
15
use CakeDC\Api\Service\Action\Action;
16
use Cake\Validation\Validator;
17
18
class ArticlesUntagAction extends Action
19
{
20
21
    /**
22
     * Apply validation process.
23
     *
24
     * @return bool
25
     */
26
    public function validates()
27
    {
28
        return true;
29
    }
30
31
    /**
32
     * Execute action.
33
     *
34
     * @return mixed
35
     */
36
    public function execute()
37
    {
38
    }
39
}
40