-
Notifications
You must be signed in to change notification settings - Fork 4
remove reference to development bundle #8
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
Conversation
Boefjim
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would love to see this merged after these changes!
|
|
||
| composer config repositories.ics_bundle '{"type": "vcs", "url": "git@github.com:tacman/IcsBundle.git"}' | ||
| composer req jsvrcek/ics-bundle:dev-tac | ||
| composer req jsvrcek/ics-bundle |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe it's a good idea to mark this as a command?
| composer req jsvrcek/ics-bundle | |
| `composer req jsvrcek/ics-bundle` |
| namespace App\Services; | ||
| private Formatter $formatter; | ||
| private CalendarExport $calendarExport; | ||
|
|
||
| class HelloController | ||
| class MyService | ||
| { | ||
|
|
||
| public function __construct(Formatter $formatter, CalendarExport $calendarExport) { | ||
|
|
||
| $this->formatter = $formatter; | ||
| $this->calendarExport = $calendarExport; | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since you are using code blocks, the indentation is no longer necessary
|
|
||
|
|
||
| // or inject them into the controller | ||
| ```php |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is missing a closing line, also then no longer needs indentation
|
@Boefjim thanks - I've merged and created a new tag, 1.1. |
The changes I've made were not actually part of the PR yet since I couldn't edit it directly, so had to add it as suggested changes instead, but I made another PR for it from my own fork if you still want to get the changes merged: #10 It's also not really necessary to add a new tag since it's just documentation changes :P |
Also, the php is now properly displayed.