Zak Horton
Zak Horton
@www-wagner Already Referenced it, but Hyper Launch Menu. Here's the official readme docs. https://hyper.is/store/hyper-launch-menu/source?README.md
Found The Bug Fix **File:** `HasSubFields.php (trait)` **Method:** `setInverseRelationship(string $inverseRelationship)` **Line:** 83 (phpstorm) **Solution:** Change `getForeignKeyName()` to `getForeignKey()` **Currently Triggers Bug** ``` public function setInverseRelationship(string $inverseRelationship) { $this->inverseRelationship = $inverseRelationship;...
**Solution** **File:** `FillsSubAttributes.php` **Method:** `runNestedOperations(NovaRequest $request, string $attribute, Model $model)` **Line:** 223 (phpstorm) **Bug:** `$this->touched[] = $value->getData()->id` **Triggers Bug** ``` protected function runNestedOperations(NovaRequest $request, string $attribute, Model $model) { $data...
Sweet, I was looking forward to this issue ~ wanted to comment earlier but know I've added a few scope creep comments :) Although this may be considered currently outside...
@ABGEO07 Which commands/command types are you thinking should be apart of the slim-console core?
@ABGEO07 I absolutely agree. One point, that I may be jumping the gun on, is whether we want to directly integrate 3rd party commands (Phinx for example) or create slim...
@l0gicgate What are the expectations for creating issues within this repo? We'll need a way for commands to run other commands, I have a pretty good idea on how to...
What if we gave devs the option to publish the commands. Once the commands are registered in slim and everything is setup, that command will take 20 minutes to write....
`php slim preset:container {container}` `php slim make:command ExampleCommand` ```
Anyone have thoughts on the idea of these two types of console commands? 1. Preset Commands 2. Make Commands **Preset Command** 1. Ability to update `composer.json` (AKA require a specific...