Cosmetic fixes

This commit is contained in:
Frederic Guillot
2015-07-06 21:55:26 -04:00
parent 538dab64b9
commit c198dc1b44
3 changed files with 20 additions and 20 deletions

View File

@@ -11,16 +11,17 @@ use Symfony\Component\Console\Command\Command;
* @package console * @package console
* @author Frederic Guillot * @author Frederic Guillot
* *
* @property \Model\Notification $notification * @property \Model\Notification $notification
* @property \Model\Project $project * @property \Model\Project $project
* @property \Model\ProjectPermission $projectPermission * @property \Model\ProjectPermission $projectPermission
* @property \Model\ProjectAnalytic $projectAnalytic * @property \Model\ProjectAnalytic $projectAnalytic
* @property \Model\ProjectDailySummary $projectDailySummary * @property \Model\ProjectDailyColumnStats $projectDailyColumnStats
* @property \Model\SubtaskExport $subtaskExport * @property \Model\ProjectDailyStats $projectDailyColumnStats
* @property \Model\Task $task * @property \Model\SubtaskExport $subtaskExport
* @property \Model\TaskExport $taskExport * @property \Model\Task $task
* @property \Model\TaskFinder $taskFinder * @property \Model\TaskExport $taskExport
* @property \Model\Transition $transition * @property \Model\TaskFinder $taskFinder
* @property \Model\Transition $transition
*/ */
abstract class Base extends Command abstract class Base extends Command
{ {

View File

@@ -118,7 +118,7 @@ class TaskFilter extends Base
* Exclude a list of task_id * Exclude a list of task_id
* *
* @access public * @access public
* @param array $task_ids * @param integer[] $task_ids
* @return TaskFilter * @return TaskFilter
*/ */
public function excludeTasks(array $task_ids) public function excludeTasks(array $task_ids)
@@ -634,10 +634,10 @@ class TaskFilter extends Base
* Transform results to ical events * Transform results to ical events
* *
* @access public * @access public
* @param string $start_column Column name for the start date * @param string $start_column Column name for the start date
* @param string $end_column Column name for the end date * @param string $end_column Column name for the end date
* @param Eluceo\iCal\Component\Calendar $vCalendar Calendar object * @param Calendar $vCalendar Calendar object
* @return Eluceo\iCal\Component\Calendar * @return Calendar
*/ */
public function addDateTimeIcalEvents($start_column, $end_column, Calendar $vCalendar = null) public function addDateTimeIcalEvents($start_column, $end_column, Calendar $vCalendar = null)
{ {
@@ -667,9 +667,9 @@ class TaskFilter extends Base
* Transform results to all day ical events * Transform results to all day ical events
* *
* @access public * @access public
* @param string $column Column name for the date * @param string $column Column name for the date
* @param Eluceo\iCal\Component\Calendar $vCalendar Calendar object * @param Calendar $vCalendar Calendar object
* @return Eluceo\iCal\Component\Calendar * @return Calendar
*/ */
public function addAllDayIcalEvents($column = 'date_due', Calendar $vCalendar = null) public function addAllDayIcalEvents($column = 'date_due', Calendar $vCalendar = null)
{ {
@@ -699,7 +699,7 @@ class TaskFilter extends Base
* @access protected * @access protected
* @param array $task * @param array $task
* @param string $uid * @param string $uid
* @return Eluceo\iCal\Component\Event * @return Event
*/ */
protected function getTaskIcalEvent(array &$task, $uid) protected function getTaskIcalEvent(array &$task, $uid)
{ {

View File

@@ -4,7 +4,6 @@ namespace Model;
use SimpleValidator\Validator; use SimpleValidator\Validator;
use SimpleValidator\Validators; use SimpleValidator\Validators;
use PicoDb\Table;
/** /**
* TaskLink model * TaskLink model