Esempio n. 1
0
 public function testGetCallerRoles()
 {
     $user = new User();
     $this->assertEquals([null], $user->getCallerRoles());
     $user->setRole(User::EMPLOYEE_ROLE);
     $this->assertEquals([User::EMPLOYEE_ROLE], $user->getCallerRoles());
 }
Esempio n. 2
0
 /**
  * Create a new user instance after a valid registration.
  *
  * @param  array  $data
  * @return User
  */
 protected function create(array $data)
 {
     return User::create(['name' => $data['name'], 'email' => $data['email'], 'password' => bcrypt($data['password'])]);
 }