Completed
Push — master ( afc941...8ca3ba )
by
unknown
03:02
created
app/ViewComposers/DJsViewComposer.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
 
8 8
 class DJsViewComposer {
9 9
 
10
-    protected $djs;
10
+	protected $djs;
11 11
 
12 12
 	/**
13 13
 	 * Bind data to the view.
@@ -16,10 +16,10 @@  discard block
 block discarded – undo
16 16
 	 * @return void
17 17
 	 */
18 18
 	public function compose(View $view)
19
-    {
20
-        if ($this->djs == null) {
21
-            $this->djs = DJ::orderBy('name', 'asc')->get();
22
-        }
19
+	{
20
+		if ($this->djs == null) {
21
+			$this->djs = DJ::orderBy('name', 'asc')->get();
22
+		}
23 23
 		$view->with('djs', $this->djs);
24 24
 	}
25 25
 }
Please login to merge, or discard this patch.
app/ViewComposers/NowPlayingViewComposer.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,8 +18,8 @@
 block discarded – undo
18 18
 	 */
19 19
 	public function compose(View $view)
20 20
 	{
21
-        $client = new Client();
22
-        try {
21
+		$client = new Client();
22
+		try {
23 23
 			$response = $client->get('http://logger.witr.rit.edu/latest.json', [
24 24
 				'timeout' => 1,
25 25
 			]);
Please login to merge, or discard this patch.