Closed dougblackjr closed 6 months ago
Addresses issue where php artisan eecli was failing to grab available options and handing them off to the EECLI command.
php artisan eecli
Example:
php artisan eecli import:run --id=2 would fail because id is not an option for eecli.
php artisan eecli import:run --id=2
id
eecli
This addresses that and adequately passes through. All props to @bryannielsen
Addresses issue where
php artisan eecli
was failing to grab available options and handing them off to the EECLI command.Example:
php artisan eecli import:run --id=2
would fail becauseid
is not an option foreecli
.This addresses that and adequately passes through. All props to @bryannielsen