Minor - Added PHPDoc blocks

skala
Yannick Warnier 13 years ago
parent 262b4e5f15
commit 915d73cc84
  1. 8
      main/course_description/ajax_controller.class.php
  2. 10
      main/course_description/course_description_form.class.php
  3. 10
      main/course_description/course_description_repository.class.php
  4. 9
      main/course_description/course_description_type.class.php
  5. 10
      main/course_description/course_description_type_repository.class.php
  6. 10
      main/course_description/course_import.class.php
  7. 10
      main/course_description/csv_reader.class.php
  8. 10
      main/course_description/csv_writer.class.php
  9. 10
      main/course_description/request.class.php
  10. 10
      main/course_description/upload_file_form.class.php

@ -1,4 +1,12 @@
<?php
/* For licensing terms, see /license.txt */
/**
* Course description's ajax controller class definition
* @package chamilo.course_description
*/
/**
* Init
*/
namespace CourseDescription;

@ -1,4 +1,12 @@
<?php
/* For licensing terms, see /license.txt */
/**
* Course description's form class definition
* @package chamilo.course_description
*/
/**
* Init
*/
namespace CourseDescription;
@ -95,4 +103,4 @@ class CourseDescriptionForm extends \FormValidator
return $result;
}
}
}

@ -1,4 +1,12 @@
<?php
/* For licensing terms, see /license.txt */
/**
* Course description repository class definition
* @package chamilo.course_description
*/
/**
* Init
*/
namespace CourseDescription;
@ -263,4 +271,4 @@ class CourseDescriptionRepository
return $result;
}
}
}

@ -1,5 +1,12 @@
<?php
/* For licensing terms, see /license.txt */
/**
* CourseDescriptionType class definition
* @package chamilo.course_description
*/
/**
* Init
*/
namespace CourseDescription;
/**

@ -1,4 +1,12 @@
<?php
/* For licensing terms, see /license.txt */
/**
* CourseDescriptionTypeRepository class definition
* @package chamilo.course_description
*/
/**
* Init
*/
namespace CourseDescription;
@ -163,4 +171,4 @@ class CourseDescriptionTypeRepository
return self::find_one_by_id($id);
}
}
}

@ -1,4 +1,12 @@
<?php
/* For licensing terms, see /license.txt */
/**
* Course description import class definition
* @package chamilo.course_description
*/
/**
* Init
*/
namespace CourseDescription;
@ -85,4 +93,4 @@ class CourseImport
return $link;
}
}
}

@ -1,4 +1,12 @@
<?php
/* For licensing terms, see /license.txt */
/**
* Course description's CSV reader class definition
* @package chamilo.course_description
*/
/**
* Init
*/
namespace CourseDescription;
@ -103,4 +111,4 @@ class CsvReader implements \Iterator
return count($items) > $this->index;
}
}
}

@ -1,4 +1,12 @@
<?php
/* For licensing terms, see /license.txt */
/**
* CSV writer class definition
* @package chamilo.course_description
*/
/**
* Init
*/
namespace CourseDescription;
@ -100,4 +108,4 @@ class CsvWriter
$writer->put($data);
}
}
}

@ -1,4 +1,12 @@
<?php
/* For licensing terms, see /license.txt */
/**
* Course description's request class definition
* @package chamilo.course_description
*/
/**
* Init
*/
namespace CourseDescription;
@ -121,4 +129,4 @@ class Request extends \Request
return $result;
}
}
}

@ -1,4 +1,12 @@
<?php
/* For licensing terms, see /license.txt */
/**
* Course description's upload file form class definition
* @package chamilo.course_description
*/
/**
* Init
*/
namespace CourseDescription;
@ -76,4 +84,4 @@ class UploadFileForm extends \FormValidator
return true;
}
}
}

Loading…
Cancel
Save