Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mbartok authored Dec 12, 2016
1 parent 2fd737c commit 9884a71
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ class LoadDataListener
*/
public function loadData(CalendarEvent $calendarEvent)
{
$startDate = $calendarEvent->getStartDatetime();
$endDate = $calendarEvent->getEndDatetime();
$startDate = $calendarEvent->getStart();
$endDate = $calendarEvent->getEnd();
$filters = $calendarEvent->getFilters();

//You may want do a custom query to populate the events
Expand Down Expand Up @@ -135,7 +135,7 @@ Add javascript:
Install assets

```bash
$> php app/console assets:install web
$> php bin/console assets:install web
```

### 6. Define routes by default <a id="routing"></a>
Expand Down

0 comments on commit 9884a71

Please sign in to comment.