-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from TheDragonCode/1.x
Improved generation of helper files for IDE
- Loading branch information
Showing
9 changed files
with
135 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,5 +6,5 @@ namespace Illuminate\Http\Client { | |
/** | ||
{methods} | ||
*/ | ||
class Response {} | ||
class {class} {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
|
||
/** @noinspection all */ | ||
|
||
namespace Illuminate\Http\Client { | ||
/** | ||
* @method $this withLogger(string $channel) | ||
* @method static $this withLogger(string $channel) | ||
*/ | ||
class Request {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
|
||
/** @noinspection all */ | ||
|
||
namespace Illuminate\Http\Client { | ||
/** | ||
* @method $this toData(\Closure|string $class, string|int|null $key = NULL) | ||
* @method static $this toData(\Closure|string $class, string|int|null $key = NULL) | ||
* @method $this toDataCollection(\Closure|string $class, string|int|null $key = NULL) | ||
* @method static $this toDataCollection(\Closure|string $class, string|int|null $key = NULL) | ||
* @method $this toFoo(\Closure|string $class, string|int|null $key = NULL) | ||
* @method static $this toFoo(\Closure|string $class, string|int|null $key = NULL) | ||
*/ | ||
class Response {} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters