Pavlo Zhukov
d7359b86d4
Avoid code duplication in constructors
2018-10-01 00:20:54 +03:00
Pavlo Zhukov
5d8d93273f
Fix missed helpers for abstract methods the same name but different classes
2018-10-01 00:02:03 +03:00
Manabu Matsui
30e5300e49
Fix alias class existence determination
2018-09-14 10:16:13 +09:00
Brent Roose
e7d4cb322f
Update ModelsCommand.php
2018-09-07 10:29:59 +02:00
Brent Roose
5318f485e2
Add ::query support
2018-09-07 10:27:20 +02:00
Barry vd. Heuvel
7db1843473
Remove Eloquent mixin thing
2018-09-06 20:41:09 +02:00
Jonas De Smet
e1d1352ac5
bugfix - Space/Enter between starting php tag and comment for PHPStan
2018-06-19 14:59:59 +02:00
Jan Alfred Richter
217b8989c2
Added support for abstract/final models.
2018-05-31 15:39:22 +12:00
Jeppe Knockaert
93630fdf62
Only skip non-models when generating docs
...
The fix made in PR https://github.com/barryvdh/laravel-ide-helper/pull/614 for issue https://github.com/barryvdh/laravel-ide-helper/issues/253 was incorrect as it resulted in comments
no longer being generated for Models that are not Pivot Rlations.
This PR allow comments to be generated for both Pivot Models (as they are
a subclass of Eloquent\Model) and normal Models.
2018-05-24 11:43:03 +02:00
Huy Dang
ba28841870
fix case relation method has parameter
2018-05-22 13:26:27 +07:00
Barry vd. Heuvel
94248adae8
Merge pull request #600 from mike-grinspan/patch-1
...
Use Illuminate\Support\Carbon instead of Carbon\Carbon
2018-05-07 11:44:40 +02:00
Barry vd. Heuvel
50ecd8b815
Update CS, typo
2018-05-07 11:38:57 +02:00
Barry vd. Heuvel
b8a73bcab9
Merge pull request #581 from soltmar/master
...
Changed overwriting confirmation message
2018-05-07 11:23:06 +02:00
Barry vd. Heuvel
0556991c69
Merge pull request #583 from inxilpro/support-fakes
...
Support for ::fake() calls
2018-05-07 11:22:33 +02:00
Barry vd. Heuvel
be78ac62cd
Merge pull request #589 from mfn/patch-1
...
Keep "null"-ness of column even with model casts
2018-05-07 11:21:47 +02:00
Barry vd. Heuvel
bbd96d3616
Merge pull request #609 from lx1036/patch
...
Sort keys for generating stable .phpstorm.meta.php
2018-05-07 11:17:33 +02:00
Barry vd. Heuvel
8d913089db
Merge pull request #614 from WickedSik/master
...
Allow command to find and use pivot models
2018-05-07 11:17:07 +02:00
Barry vd. Heuvel
9a2588cb3a
Merge pull request #612 from westphalen/master
...
Added Validator and Gate facades for Lumen
2018-05-07 11:16:47 +02:00
Barry vd. Heuvel
e7fa36bdc3
Merge pull request #629 from bedezign/smart-reset
...
"smart-reset": Reset properties/methods, but keep the text
2018-05-07 11:15:59 +02:00
Barry vd. Heuvel
203d60dc8c
Merge branch 'master' into feature/fix-callable-macros
2018-05-07 11:15:43 +02:00
Barry vd. Heuvel
f5275b700a
Merge pull request #632 from JeppeKnockaert/feature/add-morphedByMany-relation
...
Add morphedByMany relationship
2018-05-07 11:13:27 +02:00
Barry vd. Heuvel
046a9bcc77
Merge pull request #647 from eidng8/eidng8-suppress-formatter
...
suppress PHPStorm formatter
2018-05-07 11:10:25 +02:00
Tom Rochette
b1b05b694b
Remove dependecy to Symfony\Component\ClassLoader\ClassMapGenerator and replace it with Composer\Autoload\ClassMapGenerator.
2018-05-03 16:02:16 -04:00
Jackey Cheung
c7b7ebf1b5
suppress PHPStorm formatter
2018-03-21 11:36:02 +08:00
Jeppe Knockaert
17982029f0
Move long one-line array to multiple lines
2018-02-14 12:15:38 +01:00
Jeppe Knockaert
bda5120e9a
Add morphedByMany relationship
2018-02-14 12:06:45 +01:00
Steve Guns
d961482d22
Fixed PHPCS PSR2 issues
2018-02-14 08:59:19 +01:00
Steve Guns
8852b1ca9d
Added "smart-reset": Reset properties/methods, but keep the docBlock text, if any
2018-02-11 19:09:33 +01:00
Ezra Pool
8ab907f219
Support php's array callable format for macro's.
...
This allows you to define methods like this as well: Str::macro('name', [$this, 'method']);
2018-02-03 21:10:48 +01:00
Jonas De Smet
e29e035135
Add DocBlocks for classes too
2018-02-01 15:53:32 +01:00
Jurrien Dokter
7b2786ac2b
Fixing issue #253
2018-01-27 13:01:07 +01:00
Sune Westphalen
76bd86dbaf
Added Validator and Gate facades for Lumen.
2018-01-23 13:56:22 +07:00
Xiang Liu
7b067198a6
Sort keys for generating stable .phpstorm.meta.php
2018-01-15 12:44:44 +08:00
Mike
df6b1b6f82
Use Illuminate\Support\Carbon instead of Carbon\Carbon
2017-12-27 17:17:00 -05:00
Markus Fischer
76a1952c41
Keep "null"-ness of column even with model casts
...
A cast in Laravel should only affect the type, but not the database intrinsics whether a column accepts `null` or not.
As an example, consider this table (Postgres syntax):
```sql
CREATE TABLE foo (
some_column jsonb
);
```
This will be generated as: `@property string|null $some_column`
When providing a the following casts on the model:
```php
protected $casts = [
'some_column' => 'array',
];
```
then the generated property changes to: `@property array $some_column`
However the DB still accepts `null`, but this can't be expressed via the casts.
This change will make the null "sticky" and generate: `@property array|null $some_column`
2017-10-28 18:01:18 +02:00
Chris Morrell
d45b02efb1
Support for ::fake() calls
2017-10-13 11:41:30 -04:00
Mariusz
b0abafb8c7
Changed overwriting confirmation message
...
When running php artisan ide-helper:models below message was presented:
"Do you want to overwrite the existing model files? Choose no to write to _ide_helper_models.php instead? (Yes/No): (yes/no) [no]:"
This commit changes message to:
"Do you want to overwrite the existing model files? Choose no to write to _ide_helper_models.php instead? (yes/no) [no]:"
2017-10-11 11:43:16 +01:00
Subodh Dahal
01320a48e3
Bugfix: Undefined property: Barryvdh\LaravelIdeHelper\Console\MetaCommand::$config ( #562 )
2017-08-28 15:16:15 +02:00
Charles Peterson
fedcb57295
Add an eloquent command ( #544 )
...
* Add an eloquent command for adding the `@mixin \Eloquent` to the Illuminate\Database\Eloquent\Model
* spacing updates...
* multi-line function call syntax
* Write helper mixin to Eloquent/Model after helper created
* Cleanup into helper - similar to Generator
* syntax cleanup
2017-08-28 15:12:54 +02:00
Chris Morrell
55c9bfc33b
Allow for configurable meta filename ( #553 )
2017-08-28 13:37:22 +02:00
Jan.Weskamp
2b1273c45e
Fix for Laravel 5.5 ( #540 )
...
Command fire method is now handle
2017-07-16 02:24:12 +02:00
Stidges
dca7fa7b10
Use new PhpStorm advanced metadata format ( #523 )
2017-06-14 20:49:19 +02:00
leo
46901d2c80
set include_fluent default to true ( #512 )
2017-06-08 12:19:59 +02:00
Max Matiukhin
25b5576f57
generate methods for the SoftDeletes trait ( #518 )
2017-06-08 12:19:38 +02:00
Michael Tsang
d6d99994c3
return eloquent builder instead of plain database builder from model methods ( #521 )
2017-06-08 12:19:27 +02:00
Matthew Erwin
b76156b24c
Adds support for macros ( #500 )
...
* Adds support for macros
* Fixes formatting
2017-05-05 11:22:12 +02:00
Neil Farrington
3814fe86ca
Resolve displaying @return types with descriptions ( #491 )
2017-04-14 08:56:19 +02:00
JC Lee
3ab73555d9
Add support for pgsql for boolean types. ( #489 )
2017-04-11 07:31:58 +02:00
Antoine Aflalo
ff3844e4e1
Implements Nullable ( #487 )
...
* Add nullable support
Fixes #407
* Add nullable to setProperty
Better do it like this to still be able to override the base type if wanted
* Cleanup nullableColumns between models iterations
Also rename it to nullableColumns since it contains multiple columns
* Fix formatting
2017-04-08 10:19:23 +02:00
JC Lee
d11bf58084
Fix #480 where tinyint is casts as bool ( #481 )
...
* Fix #480 where tinyint is casts as bool
`tinyint` is classified by bool as doctrine/dbal, but it should not be so in our use case. `tinyint` is better PHPDoc'ed as int. If the user wants bool, he should use Eloquent's `$casts` property to do that.
* Pass PSR-2 check
* Remove comment as requested
2017-04-05 09:45:19 +02:00