예제 #1
0
 /**
  * Strategy Constructor
  *
  * @param   Input  $input  The input object from which to retrieve the request credentials.
  *
  * @since   1.0
  */
 public function __construct(Input $input)
 {
     $this->input = $input;
     $usersTable = new UserTable();
     $this->credentialStore = $usersTable->getUserPasswords();
 }