@@ -21,8 +21,6 @@ |
||
| 21 | 21 | * Decide based on the current date and time what the vote should be. Static so it's strategy can easily be accessed |
| 22 | 22 | * by other components as well, without the actual need for the voter instance. |
| 23 | 23 | * |
| 24 | - * @param \DateTime $scheduledFrom |
|
| 25 | - * @param \DateTime $scheduledTill |
|
| 26 | 24 | * @return int |
| 27 | 25 | */ |
| 28 | 26 | public static function decide(ScheduledContentInterface $object) |
@@ -69,10 +69,10 @@ |
||
| 69 | 69 | foreach ($records as $record) { |
| 70 | 70 | $table->addRow( |
| 71 | 71 | [ |
| 72 | - $record['public_url'], |
|
| 73 | - $record['internal_url'], |
|
| 74 | - $record['page_id'], |
|
| 75 | - $record['original_page_id'], |
|
| 72 | + $record['public_url'], |
|
| 73 | + $record['internal_url'], |
|
| 74 | + $record['page_id'], |
|
| 75 | + $record['original_page_id'], |
|
| 76 | 76 | ] |
| 77 | 77 | ); |
| 78 | 78 | } |
@@ -2,7 +2,7 @@ |
||
| 2 | 2 | /** |
| 3 | 3 | * @author Oskar van Velden <[email protected]> |
| 4 | 4 | * @copyright Zicht Online <http://zicht.nl> |
| 5 | - */ |
|
| 5 | + */ |
|
| 6 | 6 | |
| 7 | 7 | namespace Zicht\Bundle\PageBundle\Entity; |
| 8 | 8 | |