Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improving setup routes comments #22

Merged

Conversation

peter279k
Copy link
Member

Changed log

@peter279k peter279k self-assigned this Jan 19, 2021
@peter279k peter279k added the enhancement New feature or request label Jan 19, 2021
@kpicaza kpicaza added the documentation About package documentation label Jan 19, 2021
@kpicaza kpicaza added this to the 2.0.0 milestone Jan 19, 2021
* $app->post('/album', [App\Handler\AlbumCreateHandler::class], 'album.create');
* $app->put('/album/:id', [App\Handler\AlbumUpdateHandler::class], 'album.put');
* $app->patch('/album/:id', [App\Handler\AlbumUpdateHandler::class], 'album.patch');
* $app->delete('/album/:id', [App\Handler\AlbumDeleteHandler::class], 'album.delete');
Copy link
Member

@kpicaza kpicaza Jan 19, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@peter279k Sorry for requesting a change after approval, with that we talk on antidot-framework/antidot-framework#30, I prefer to remove the next lines until it is implemented as you suggested.

 *
 * Or with multiple request methods:
 *
 * $app->route('/contact', [App\Handler\ContactHandler::class], ['GET', 'POST', ...], 'contact');

*
* Or with multiple request methods:
*
* $app->route('/contact', App\Handler\ContactHandler::class, ['GET', 'POST', ...], 'contact');
* $app->route('/contact', [App\Handler\ContactHandler::class], ['GET', 'POST', ...], 'contact');
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@peter279k My apologies, if you want I can make myself, I want to mean to delete this last comment block as in https://github.com/antidot-framework/reactive-antidot-starter/pull/12/files

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks. Deleted.

@kpicaza kpicaza merged commit 804230a into antidot-framework:master Jan 19, 2021
@peter279k peter279k deleted the fix_route_comments branch January 19, 2021 19:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation About package documentation enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants