Completed
Pull Request — master (#14)
by
unknown
03:20
created
src/DayOf.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -36,11 +36,11 @@  discard block
 block discarded – undo
36 36
     }
37 37
 
38 38
     /**
39
-   * Which day of year is current day.
40
-   *
41
-   * @since  Aug, 03 2015
42
-   * @return integer
43
-   */
39
+     * Which day of year is current day.
40
+     *
41
+     * @since  Aug, 03 2015
42
+     * @return integer
43
+     */
44 44
     public function year()
45 45
     {
46 46
 
@@ -52,11 +52,11 @@  discard block
 block discarded – undo
52 52
 
53 53
 
54 54
     /**
55
-   * Which day of week is current day.
56
-   *
57
-   * @since  Aug, 09 2015
58
-   * @return integer
59
-   */
55
+     * Which day of week is current day.
56
+     *
57
+     * @since  Aug, 09 2015
58
+     * @return integer
59
+     */
60 60
     public function week()
61 61
     {
62 62
 
@@ -66,17 +66,17 @@  discard block
 block discarded – undo
66 66
 
67 67
     }
68 68
 
69
-	/**
70
-	 * Return last day of current month
71
-	 *
72
-	 * @since  Oct, 18 2016
73
-	 * @return integer
74
-	 */
75
-	public function lastDayMonth() {
69
+  /**
70
+   * Return last day of current month
71
+   *
72
+   * @since  Oct, 18 2016
73
+   * @return integer
74
+   */
75
+  public function lastDayMonth() {
76 76
 
77
-		$this->config = include __DIR__.'/CalendarSettings/' . ucfirst($this->calendar_type) . '.php';
77
+    $this->config = include __DIR__.'/CalendarSettings/' . ucfirst($this->calendar_type) . '.php';
78 78
 
79
-		return $this->config[ 'month_days_number' ][ intval( $this->date_time->format( 'm' ) ) ];
79
+    return $this->config[ 'month_days_number' ][ intval( $this->date_time->format( 'm' ) ) ];
80 80
 
81
-	}
81
+  }
82 82
 }
Please login to merge, or discard this patch.