Completed
Push — master ( 884d53...078d33 )
by mehdi
02:37
created
src/Convert.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -63,6 +63,10 @@
 block discarded – undo
63 63
    *
64 64
    *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
65 65
    */
66
+
67
+  /**
68
+   * @param \DateTime $date_time
69
+   */
66 70
   public function __construct( $date_time = NULL ) {
67 71
 
68 72
     if ( $date_time !== NULL ) {
Please login to merge, or discard this patch.
src/Datium.php 1 patch
Doc Comments   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
   /**
109 109
    * Get current datetime
110 110
    * @since Aug 17 2015
111
-   * @return object
111
+   * @return Datium
112 112
    */
113 113
   public static function now() {
114 114
 
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
    * @param $hour integer
127 127
    * @param $minute integer
128 128
    * @param $second integer
129
-   * @return object
129
+   * @return Datium
130 130
    */
131 131
   public static function create( $year = 2000, $month = 1, $day = 1, $hour = 0, $minute = 0, $second = 0 ) {
132 132
 
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
   /**
189 189
    * Add new date value to current date
190 190
    * @param $value string
191
-   * @return object
191
+   * @return Datium
192 192
    */
193 193
   public function add( $value ) {
194 194
 
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
 
222 222
   /**
223 223
    * Check if current year is leap or not
224
-   * @return boolean
224
+   * @return Leap
225 225
    */
226 226
   public function leap( $type = 'gr') {
227 227
 
@@ -261,6 +261,10 @@  discard block
 block discarded – undo
261 261
 
262 262
   }
263 263
 
264
+  /**
265
+   * @param string $calendar
266
+   * @param string $format
267
+   */
264 268
   public function translate( $calendar, $format ) {
265 269
 
266 270
   $this->date_time = new Translate( $this->date_time, $calendar, $format, $this->gregorian_DayofWeek );
Please login to merge, or discard this patch.
src/DayOf.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
 
71 71
     /**
72 72
    * @since Sept, 14 2015
73
-   * @return integer
73
+   * @return double
74 74
    */
75 75
   protected function persian_day_of_year() {
76 76
 
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 
94 94
      /**
95 95
    * @since Sept, 14 2015
96
-   * @return integer
96
+   * @return double
97 97
    */
98 98
   protected function islamic_day_of_year() {
99 99
 
Please login to merge, or discard this patch.
src/Events/Events.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -56,6 +56,10 @@
 block discarded – undo
56 56
 	 *
57 57
 	 *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/
58 58
 	 */
59
+
60
+	/**
61
+	 * @param string $path
62
+	 */
59 63
 	private function fetch( $path ) {
60 64
 
61 65
 		$this->events = include( $path );
Please login to merge, or discard this patch.
src/Leap.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
   /**
101 101
    * check the ghamari year is leap or not
102 102
    * @since Oct, 24 2015
103
-   * @return boolean
103
+   * @return integer|null
104 104
    */
105 105
   public function ghamariLeapYear() {
106 106
 
Please login to merge, or discard this patch.
src/Translate.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -20,6 +20,9 @@
 block discarded – undo
20 20
 
21 21
   protected $english_number = array( '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' );
22 22
 
23
+  /**
24
+   * @param \DateTime $date_time
25
+   */
23 26
   public function __construct( $date_time, $calendar, $format, $gregorian_DayofWeek ){
24 27
 
25 28
     $this->translate = include( 'lang/fa/general.php' );
Please login to merge, or discard this patch.