Completed
Pull Request — master (#259)
by Cristian
02:19
created

ResetPasswordController::__construct()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 9
Code Lines 4

Duplication

Lines 9
Ratio 100 %

Importance

Changes 0
Metric Value
cc 2
eloc 4
nc 2
nop 0
dl 9
loc 9
rs 9.6666
c 0
b 0
f 0
1
<?php
2
3
namespace Backpack\Base\app\Http\Controllers\Auth;
4
5
use Backpack\Base\app\Http\Controllers\Controller;
6
use Illuminate\Foundation\Auth\ResetsPasswords;
7
use Illuminate\Http\Request;
8
use Illuminate\Support\Facades\Password;
9
10
class ResetPasswordController extends Controller
11
{
12
    protected $data = []; // the information we send to the view
13
14
    /*
15
    |--------------------------------------------------------------------------
16
    | Password Reset Controller
17
    |--------------------------------------------------------------------------
18
    |
19
    | This controller is responsible for handling password reset requests
20
    | and uses a simple trait to include this behavior. You're free to
21
    | explore this trait and override any methods you wish to tweak.
22
    |
23
    */
24
25
    use ResetsPasswords;
26
27
    /**
28
     * Create a new controller instance.
29
     *
30
     * @return void
0 ignored issues
show
Comprehensibility Best Practice introduced by
Adding a @return annotation to constructors is generally not recommended as a constructor does not have a meaningful return value.

Adding a @return annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.

Please refer to the PHP core documentation on constructors.

Loading history...
31
     */
32 View Code Duplication
    public function __construct()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
33
    {
34
        $guard = backpack_guard_name();
35
36
        $this->middleware("guest:$guard");
37
38
        // where to redirect after password was reset
39
        $this->redirectTo = property_exists($this, 'redirectTo') ? $this->redirectTo : config('backpack.base.route_prefix', 'admin').'/dashboard';
0 ignored issues
show
Bug introduced by
The property redirectTo does not exist. Did you maybe forget to declare it?

In PHP it is possible to write to properties without declaring them. For example, the following is perfectly valid PHP code:

class MyClass { }

$x = new MyClass();
$x->foo = true;

Generally, it is a good practice to explictly declare properties to avoid accidental typos and provide IDE auto-completion:

class MyClass {
    public $foo;
}

$x = new MyClass();
$x->foo = true;
Loading history...
40
    }
41
42
    // -------------------------------------------------------
43
    // Laravel overwrites for loading backpack views
44
    // -------------------------------------------------------
45
46
    /**
47
     * Display the password reset view for the given token.
48
     *
49
     * If no token is present, display the link request form.
50
     *
51
     * @param \Illuminate\Http\Request $request
52
     * @param string|null              $token
53
     *
54
     * @return \Illuminate\Http\Response
55
     */
56
    public function showResetForm(Request $request, $token = null)
57
    {
58
        $this->data['title'] = trans('backpack::base.reset_password'); // set the page title
59
60
        return view('backpack::auth.passwords.reset', $this->data)->with(
0 ignored issues
show
Bug introduced by
The method with does only exist in Illuminate\View\View, but not in Illuminate\Contracts\View\Factory.

It seems like the method you are trying to call exists only in some of the possible types.

Let’s take a look at an example:

class A
{
    public function foo() { }
}

class B extends A
{
    public function bar() { }
}

/**
 * @param A|B $x
 */
function someFunction($x)
{
    $x->foo(); // This call is fine as the method exists in A and B.
    $x->bar(); // This method only exists in B and might cause an error.
}

Available Fixes

  1. Add an additional type-check:

    /**
     * @param A|B $x
     */
    function someFunction($x)
    {
        $x->foo();
    
        if ($x instanceof B) {
            $x->bar();
        }
    }
    
  2. Only allow a single type to be passed if the variable comes from a parameter:

    function someFunction(B $x) { /** ... */ }
    
Loading history...
61
            ['token' => $token, 'email' => $request->email]
62
        );
63
    }
64
65
    /**
66
     * Get the broker to be used during password reset.
67
     *
68
     * @return \Illuminate\Contracts\Auth\PasswordBroker
69
     */
70
    public function broker()
71
    {
72
        $passwords = config('backpack.base.passwords', config('auth.defaults.passwords'));
73
74
        return Password::broker($passwords);
75
    }
76
77
    /**
78
     * Get the guard to be used during password reset.
79
     *
80
     * @return \Illuminate\Contracts\Auth\StatefulGuard
81
     */
82
    protected function guard()
83
    {
84
        return backpack_auth();
85
    }
86
}
87