nospor to z powodu poniedziałku

i poniekąd weekendu

Już mi troszeczkę się rozjaśniło natomiast ciągle nie mogę odnaleźć tej funkcji: Auth::attempt,
Może inaczej, odnalazłem ją w pliku \Illuminate\Auth\Guard dlaczego, z zapisu Auth::attempt wynika że Auth jest klasą więc szukałem (class auth ). no i znalazłem:
<?php
namespace Illuminate\Support\Facades;
/**
* @see \Illuminate\Auth\AuthManager
* @see \Illuminate\Auth\Guard
*/
class Auth extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected
static function getFacadeAccessor
() {
return 'auth';
}
}
No i pisze że mam sobie zajrzeć do pliku \Illuminate\Auth\Guard to funkcję znalazłem:
public function attempt
(array $credentials = [], $remember = false, $login = true) {
$this->fireAttemptEvent($credentials, $remember, $login);
$this->lastAttempted = $user = $this->provider->retrieveByCredentials($credentials);
...
No ale tak.
1) To nie jest funkcja statyczna, jeżeli się mylę wyprowadź mnie proszę z błędu

2) Po zapisie w pliku auth.php nie widać aby miała dostęp do guard.php, nie mogę znaleźć co daje dostęp do pliku guard.php, oczywiście jeżeli tam znajduje się funkcja attempt której szukam.
Cytat(Pyton_000 @ 6.07.2015, 10:32:12 )

http://pastebin.com/rhqFHZ2nIDE Helper.
Powodzenia w szukaniu.
No i mam
public static function attempt
($credentials = array(), $remember = false, $login = true){ return \Illuminate\Auth\Guard::attempt($credentials, $remember, $login);
}
ale co to za plik który mi wysłałeś nigdzie w plikach helper nie mogę znaleźć