mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 01:57:13 +00:00
Merge pull request #583 from inxilpro/support-fakes
Support for ::fake() calls
This commit is contained in:
@@ -59,6 +59,7 @@ class Alias
|
|||||||
}
|
}
|
||||||
|
|
||||||
$this->addClass($this->root);
|
$this->addClass($this->root);
|
||||||
|
$this->detectFake();
|
||||||
$this->detectNamespace();
|
$this->detectNamespace();
|
||||||
$this->detectClassType();
|
$this->detectClassType();
|
||||||
$this->detectExtendsNamespace();
|
$this->detectExtendsNamespace();
|
||||||
@@ -179,6 +180,30 @@ class Alias
|
|||||||
return $this->methods;
|
return $this->methods;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Detect class returned by ::fake()
|
||||||
|
*/
|
||||||
|
protected function detectFake()
|
||||||
|
{
|
||||||
|
$facade = $this->facade;
|
||||||
|
|
||||||
|
if (!method_exists($facade, 'fake')) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$real = $facade::getFacadeRoot();
|
||||||
|
|
||||||
|
try {
|
||||||
|
$facade::fake();
|
||||||
|
$fake = $facade::getFacadeRoot();
|
||||||
|
if ($fake !== $real) {
|
||||||
|
$this->addClass(get_class($fake));
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
$facade::swap($real);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Detect the namespace
|
* Detect the namespace
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user