Skip to content

Commit

Permalink
Merge pull request #130 from crockalet/fix/rest-facade-docblock
Browse files Browse the repository at this point in the history
Fixed Rest facade docblock
  • Loading branch information
GautierDele authored Jul 17, 2024
2 parents 2e004b9 + 5ef8bda commit a7279cd
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/Facades/Rest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,18 @@

use Illuminate\Support\Facades\Facade;

/**
* @method static \Lomkit\Rest\Http\Routing\PendingResourceRegistration resource(string $name, $controller, array $options = [])
* @method static \Lomkit\Rest\Rest withDocumentationCallback(\Closure $documentationCallback)
*
* @see \Lomkit\Rest\Rest
*/
class Rest extends Facade
{
/**
* @method static \Lomkit\Rest\Http\Routing\PendingResourceRegistration resource(string $name, $controller, array $options = [])
* @method static \Lomkit\Rest\Rest withDocumentationCallback(\Closure $documentationCallback)
* Get the registered name of the component.
*
* @see \Lomkit\Rest\Rest
* @return string
*/
protected static function getFacadeAccessor()
{
Expand Down

0 comments on commit a7279cd

Please sign in to comment.