Completed
Push — master ( e9ec3f...21ec97 )
by vistart
39:50
created

JoinController::actionJoin()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
dl 0
loc 4
rs 10
c 1
b 0
f 1
cc 1
eloc 1
nc 1
nop 1
1
<?php
2
3
/**
4
 *  _   __ __ _____ _____ ___  ____  _____
5
 * | | / // // ___//_  _//   ||  __||_   _|
6
 * | |/ // /(__  )  / / / /| || |     | |
7
 * |___//_//____/  /_/ /_/ |_||_|     |_|
8
 * @link https://vistart.me/
9
 * @copyright Copyright (c) 2016 - 2017 vistart
10
 * @license https://vistart.me/license/
11
 */
12
13
14
namespace rhosocial\organization\web\organization\controllers;
15
16
use yii\web\Controller;
17
18
/**
19
 * Class JoinController
20
 * @package rhosocial\organization\web\organization\controllers
21
 * @version 1.0
22
 * @author vistart <[email protected]>
23
 */
24
class JoinController extends Controller
25
{
26
    /**
27
     * @param $entrance
28
     */
29
    public function actionOrganization($entrance)
0 ignored issues
show
Unused Code introduced by
The parameter $entrance is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
30
    {
31
32
    }
33
34
    /**
35
     * @param $entrance
36
     */
37
    public function actionJoin($entrance)
0 ignored issues
show
Unused Code introduced by
The parameter $entrance is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
38
    {
39
40
    }
41
}
42