Completed
Push — master ( bff11b...175726 )
by Jacob
09:11
created
controller/lifestream/AboutController.class.inc.php 2 patches
Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -5,33 +5,33 @@
 block discarded – undo
5 5
 final class AboutController extends DefaultPageController
6 6
 {
7 7
 
8
-	private static $TITLE = "About | What's a Lifestream?";
9
-	private static $DESCRIPTION = 'A breakdown of what a lifestream is, why Jacob Emerick made one, and how he made it.';
8
+    private static $TITLE = "About | What's a Lifestream?";
9
+    private static $DESCRIPTION = 'A breakdown of what a lifestream is, why Jacob Emerick made one, and how he made it.';
10 10
 
11
-	private static $KEYWORD_ARRAY = array(
12
-		'about',
13
-		'lifestream',
14
-		'feed',
15
-		'activity stream',
16
-		'Jacob Emerick',
17
-		'jpemeric');
11
+    private static $KEYWORD_ARRAY = array(
12
+        'about',
13
+        'lifestream',
14
+        'feed',
15
+        'activity stream',
16
+        'Jacob Emerick',
17
+        'jpemeric');
18 18
 
19
-	protected function set_head_data()
20
-	{
21
-		$this->set_title(self::$TITLE);
22
-		$this->set_description(self::$DESCRIPTION);
23
-		$this->set_keywords(self::$KEYWORD_ARRAY);
19
+    protected function set_head_data()
20
+    {
21
+        $this->set_title(self::$TITLE);
22
+        $this->set_description(self::$DESCRIPTION);
23
+        $this->set_keywords(self::$KEYWORD_ARRAY);
24 24
 		
25
-		parent::set_head_data();
26
-	}
25
+        parent::set_head_data();
26
+    }
27 27
 
28
-	protected function set_body_data()
29
-	{
30
-		$this->set_body('title', "WHAT'S A LIFESTREAM?");
31
-		$this->set_body('type', 'about');
32
-		$this->set_body('view', 'About');
28
+    protected function set_body_data()
29
+    {
30
+        $this->set_body('title', "WHAT'S A LIFESTREAM?");
31
+        $this->set_body('type', 'about');
32
+        $this->set_body('view', 'About');
33 33
 		
34
-		parent::set_body_data();
35
-	}
34
+        parent::set_body_data();
35
+    }
36 36
 
37 37
 }
38 38
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@  discard block
 block discarded – undo
2 2
 
3 3
 Loader::load('controller', 'lifestream/DefaultPageController');
4 4
 
5
-final class AboutController extends DefaultPageController
6
-{
5
+final class AboutController extends DefaultPageController
6
+{
7 7
 
8 8
 	private static $TITLE = "About | What's a Lifestream?";
9 9
 	private static $DESCRIPTION = 'A breakdown of what a lifestream is, why Jacob Emerick made one, and how he made it.';
@@ -16,8 +16,8 @@  discard block
 block discarded – undo
16 16
 		'Jacob Emerick',
17 17
 		'jpemeric');
18 18
 
19
-	protected function set_head_data()
20
-	{
19
+	protected function set_head_data()
20
+	{
21 21
 		$this->set_title(self::$TITLE);
22 22
 		$this->set_description(self::$DESCRIPTION);
23 23
 		$this->set_keywords(self::$KEYWORD_ARRAY);
@@ -25,8 +25,8 @@  discard block
 block discarded – undo
25 25
 		parent::set_head_data();
26 26
 	}
27 27
 
28
-	protected function set_body_data()
29
-	{
28
+	protected function set_body_data()
29
+	{
30 30
 		$this->set_body('title', "WHAT'S A LIFESTREAM?");
31 31
 		$this->set_body('type', 'about');
32 32
 		$this->set_body('view', 'About');
Please login to merge, or discard this patch.
controller/Error503Controller.class.inc.php 2 patches
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -5,20 +5,20 @@
 block discarded – undo
5 5
 class Error503Controller extends PageController
6 6
 {
7 7
 
8
-	protected function set_head_data()
9
-	{
10
-		$this->set_header_method('send503');
11
-		$this->add_css('normalize');
12
-		$this->add_css('503');
8
+    protected function set_head_data()
9
+    {
10
+        $this->set_header_method('send503');
11
+        $this->add_css('normalize');
12
+        $this->add_css('503');
13 13
 		
14
-		$this->set_title("Jacob Emerick's 503 Page");
15
-		$this->set_description('Global 503 page for sites under jacobemerick.com. Page not found!');
16
-		$this->set_keywords(array());
17
-	}
14
+        $this->set_title("Jacob Emerick's 503 Page");
15
+        $this->set_description('Global 503 page for sites under jacobemerick.com. Page not found!');
16
+        $this->set_keywords(array());
17
+    }
18 18
 
19
-	protected function set_body_data()
20
-	{
21
-		$this->set_body_view('/503');
22
-	}
19
+    protected function set_body_data()
20
+    {
21
+        $this->set_body_view('/503');
22
+    }
23 23
 
24 24
 }
Please login to merge, or discard this patch.
Braces   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@  discard block
 block discarded – undo
2 2
 
3 3
 Loader::load('controller', '/PageController');
4 4
 
5
-class Error503Controller extends PageController
6
-{
5
+class Error503Controller extends PageController
6
+{
7 7
 
8
-	protected function set_head_data()
9
-	{
8
+	protected function set_head_data()
9
+	{
10 10
 		$this->set_header_method('send503');
11 11
 		$this->add_css('normalize');
12 12
 		$this->add_css('503');
@@ -16,8 +16,8 @@  discard block
 block discarded – undo
16 16
 		$this->set_keywords(array());
17 17
 	}
18 18
 
19
-	protected function set_body_data()
20
-	{
19
+	protected function set_body_data()
20
+	{
21 21
 		$this->set_body_view('/503');
22 22
 	}
23 23
 
Please login to merge, or discard this patch.
controller/Error301Controller.class.inc.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -5,13 +5,13 @@
 block discarded – undo
5 5
 class Error301Controller extends PageController
6 6
 {
7 7
 
8
-	public function __construct($uri)
9
-	{
10
-		Header::redirect($uri);
11
-		exit;
12
-	}
8
+    public function __construct($uri)
9
+    {
10
+        Header::redirect($uri);
11
+        exit;
12
+    }
13 13
 
14
-	protected function set_head_data() {}
15
-	protected function set_body_data() {}
14
+    protected function set_head_data() {}
15
+    protected function set_body_data() {}
16 16
 
17 17
 }
Please login to merge, or discard this patch.
Braces   +10 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,16 +2,20 @@
 block discarded – undo
2 2
 
3 3
 Loader::load('controller', '/PageController');
4 4
 
5
-class Error301Controller extends PageController
6
-{
5
+class Error301Controller extends PageController
6
+{
7 7
 
8
-	public function __construct($uri)
9
-	{
8
+	public function __construct($uri)
9
+	{
10 10
 		Header::redirect($uri);
11 11
 		exit;
12 12
 	}
13 13
 
14
-	protected function set_head_data() {}
15
-	protected function set_body_data() {}
14
+	protected function set_head_data()
15
+	{
16
+}
17
+	protected function set_body_data()
18
+	{
19
+}
16 20
 
17 21
 }
Please login to merge, or discard this patch.
controller/home/DefaultPageController.class.inc.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -5,15 +5,15 @@
 block discarded – undo
5 5
 abstract class DefaultPageController extends PageController
6 6
 {
7 7
 
8
-	protected function set_head_data()
9
-	{
10
-		$this->add_css('normalize');
11
-		$this->add_css('home');
12
-	}
8
+    protected function set_head_data()
9
+    {
10
+        $this->add_css('normalize');
11
+        $this->add_css('home');
12
+    }
13 13
 
14
-	protected function set_body_data()
15
-	{
16
-		$this->set_body('activity_array', $this->get_recent_activity());
17
-	}
14
+    protected function set_body_data()
15
+    {
16
+        $this->set_body('activity_array', $this->get_recent_activity());
17
+    }
18 18
 
19 19
 }
Please login to merge, or discard this patch.
Braces   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,17 +2,17 @@
 block discarded – undo
2 2
 
3 3
 Loader::load('controller', '/PageController');
4 4
 
5
-abstract class DefaultPageController extends PageController
6
-{
5
+abstract class DefaultPageController extends PageController
6
+{
7 7
 
8
-	protected function set_head_data()
9
-	{
8
+	protected function set_head_data()
9
+	{
10 10
 		$this->add_css('normalize');
11 11
 		$this->add_css('home');
12 12
 	}
13 13
 
14
-	protected function set_body_data()
15
-	{
14
+	protected function set_body_data()
15
+	{
16 16
 		$this->set_body('activity_array', $this->get_recent_activity());
17 17
 	}
18 18
 
Please login to merge, or discard this patch.
controller/home/AboutController.class.inc.php 2 patches
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -5,32 +5,32 @@
 block discarded – undo
5 5
 final class AboutController extends DefaultPageController
6 6
 {
7 7
 
8
-	private static $TITLE = 'About | Jacob Emerick';
9
-	private static $DESCRIPTION = 'Some basic information about Jacob Emerick and his past, web development, and hiking adventures';
8
+    private static $TITLE = 'About | Jacob Emerick';
9
+    private static $DESCRIPTION = 'Some basic information about Jacob Emerick and his past, web development, and hiking adventures';
10 10
 
11
-	private static $KEYWORD_ARRAY = array(
12
-		'Jacob Emerick',
13
-		'jacobemerick',
14
-		'jpemeric',
15
-		'about',
16
-		'bio',
17
-		'web developer',
18
-		'hiker');
11
+    private static $KEYWORD_ARRAY = array(
12
+        'Jacob Emerick',
13
+        'jacobemerick',
14
+        'jpemeric',
15
+        'about',
16
+        'bio',
17
+        'web developer',
18
+        'hiker');
19 19
 
20
-	protected function set_head_data()
21
-	{
22
-		$this->set_title(self::$TITLE);
23
-		$this->set_description(self::$DESCRIPTION);
24
-		$this->set_keywords(self::$KEYWORD_ARRAY);
20
+    protected function set_head_data()
21
+    {
22
+        $this->set_title(self::$TITLE);
23
+        $this->set_description(self::$DESCRIPTION);
24
+        $this->set_keywords(self::$KEYWORD_ARRAY);
25 25
 		
26
-		parent::set_head_data();
27
-	}
26
+        parent::set_head_data();
27
+    }
28 28
 
29
-	protected function set_body_data()
30
-	{
31
-		$this->set_body_view('About');
29
+    protected function set_body_data()
30
+    {
31
+        $this->set_body_view('About');
32 32
 		
33
-		parent::set_body_data();
34
-	}
33
+        parent::set_body_data();
34
+    }
35 35
 
36 36
 }
37 37
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@  discard block
 block discarded – undo
2 2
 
3 3
 Loader::load('controller', 'home/DefaultPageController');
4 4
 
5
-final class AboutController extends DefaultPageController
6
-{
5
+final class AboutController extends DefaultPageController
6
+{
7 7
 
8 8
 	private static $TITLE = 'About | Jacob Emerick';
9 9
 	private static $DESCRIPTION = 'Some basic information about Jacob Emerick and his past, web development, and hiking adventures';
@@ -17,8 +17,8 @@  discard block
 block discarded – undo
17 17
 		'web developer',
18 18
 		'hiker');
19 19
 
20
-	protected function set_head_data()
21
-	{
20
+	protected function set_head_data()
21
+	{
22 22
 		$this->set_title(self::$TITLE);
23 23
 		$this->set_description(self::$DESCRIPTION);
24 24
 		$this->set_keywords(self::$KEYWORD_ARRAY);
@@ -26,8 +26,8 @@  discard block
 block discarded – undo
26 26
 		parent::set_head_data();
27 27
 	}
28 28
 
29
-	protected function set_body_data()
30
-	{
29
+	protected function set_body_data()
30
+	{
31 31
 		$this->set_body_view('About');
32 32
 		
33 33
 		parent::set_body_data();
Please login to merge, or discard this patch.
controller/site/TermsController.class.inc.php 2 patches
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -5,22 +5,22 @@
 block discarded – undo
5 5
 final class TermsController extends DefaultPageController
6 6
 {
7 7
 
8
-	protected function set_head_data()
9
-	{
10
-		$this->set_title("Terms of Use for Jacob Emerick's Sites");
11
-		$this->set_description("Some basic (and boring) legal jargon and perferred usage of the content on Jacob Emerick's sites. Includes re-use terms and advice on retracing hikes.");
12
-		$this->set_keywords(array('terms of use', 'legal', 'accountability', 'trespassing', 'Jacob Emerick'));
8
+    protected function set_head_data()
9
+    {
10
+        $this->set_title("Terms of Use for Jacob Emerick's Sites");
11
+        $this->set_description("Some basic (and boring) legal jargon and perferred usage of the content on Jacob Emerick's sites. Includes re-use terms and advice on retracing hikes.");
12
+        $this->set_keywords(array('terms of use', 'legal', 'accountability', 'trespassing', 'Jacob Emerick'));
13 13
 		
14
-		parent::set_head_data();
15
-	}
14
+        parent::set_head_data();
15
+    }
16 16
 
17
-	protected function set_body_data()
18
-	{
19
-		$this->set_body('top_data', array('title' => 'Terms of Use'));
17
+    protected function set_body_data()
18
+    {
19
+        $this->set_body('top_data', array('title' => 'Terms of Use'));
20 20
 		
21
-		$this->set_body('body_view', 'Terms');
21
+        $this->set_body('body_view', 'Terms');
22 22
 		
23
-		parent::set_body_data();
24
-	}
23
+        parent::set_body_data();
24
+    }
25 25
 
26 26
 }
Please login to merge, or discard this patch.
Braces   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@  discard block
 block discarded – undo
2 2
 
3 3
 Loader::load('controller', 'site/DefaultPageController');
4 4
 
5
-final class TermsController extends DefaultPageController
6
-{
5
+final class TermsController extends DefaultPageController
6
+{
7 7
 
8
-	protected function set_head_data()
9
-	{
8
+	protected function set_head_data()
9
+	{
10 10
 		$this->set_title("Terms of Use for Jacob Emerick's Sites");
11 11
 		$this->set_description("Some basic (and boring) legal jargon and perferred usage of the content on Jacob Emerick's sites. Includes re-use terms and advice on retracing hikes.");
12 12
 		$this->set_keywords(array('terms of use', 'legal', 'accountability', 'trespassing', 'Jacob Emerick'));
@@ -14,8 +14,8 @@  discard block
 block discarded – undo
14 14
 		parent::set_head_data();
15 15
 	}
16 16
 
17
-	protected function set_body_data()
18
-	{
17
+	protected function set_body_data()
18
+	{
19 19
 		$this->set_body('top_data', array('title' => 'Terms of Use'));
20 20
 		
21 21
 		$this->set_body('body_view', 'Terms');
Please login to merge, or discard this patch.
controller/site/ChangelogController.class.inc.php 3 patches
Indentation   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -7,42 +7,42 @@
 block discarded – undo
7 7
 final class ChangelogController extends DefaultPageController
8 8
 {
9 9
 
10
-	protected function set_head_data()
11
-	{
12
-		$this->set_title("Changelog for Jacob Emerick's Sites");
13
-		$this->set_description("Listing of the last changes done on the framework behind Jacob Emerick's websites. Yeah, he's down with that version control.");
14
-		$this->set_keywords(array('changelog', 'version control', 'code', 'comments', 'Jacob Emerick'));
10
+    protected function set_head_data()
11
+    {
12
+        $this->set_title("Changelog for Jacob Emerick's Sites");
13
+        $this->set_description("Listing of the last changes done on the framework behind Jacob Emerick's websites. Yeah, he's down with that version control.");
14
+        $this->set_keywords(array('changelog', 'version control', 'code', 'comments', 'Jacob Emerick'));
15 15
 		
16
-		parent::set_head_data();
17
-	}
16
+        parent::set_head_data();
17
+    }
18 18
 
19
-	protected function set_body_data()
20
-	{
21
-		parent::set_body_data();
19
+    protected function set_body_data()
20
+    {
21
+        parent::set_body_data();
22 22
 		
23
-		$this->set_body('top_data', array('title' => 'Change Log'));
23
+        $this->set_body('top_data', array('title' => 'Change Log'));
24 24
 		
25
-		$this->set_body('body_data', $this->get_changelog());
26
-		$this->set_body('body_view', 'Changelog');
27
-	}
25
+        $this->set_body('body_data', $this->get_changelog());
26
+        $this->set_body('body_view', 'Changelog');
27
+    }
28 28
 
29
-	private function get_changelog()
30
-	{
29
+    private function get_changelog()
30
+    {
31 31
     global $container;
32 32
     $changelogRepository = new MysqlChangelogRepository($container['db_connection_locator']);
33 33
     $changelog_result = $changelogRepository->getChanges(40);
34 34
 		
35
-		foreach($changelog_result as $change)
36
-		{
37
-			$changelog[] = (object) array(
38
-				'date' => (object) array(
39
-					'stamp' => date('c', strtotime($change['datetime'])),
40
-					'short' => date('M j', strtotime($change['datetime'])),
41
-					'friendly' => date('F j, Y g:i A', strtotime($change['datetime']))),
42
-				'message' => $change['message_short']);
43
-		}
35
+        foreach($changelog_result as $change)
36
+        {
37
+            $changelog[] = (object) array(
38
+                'date' => (object) array(
39
+                    'stamp' => date('c', strtotime($change['datetime'])),
40
+                    'short' => date('M j', strtotime($change['datetime'])),
41
+                    'friendly' => date('F j, Y g:i A', strtotime($change['datetime']))),
42
+                'message' => $change['message_short']);
43
+        }
44 44
 		
45
-		return array('changelog' => $changelog);
46
-	}
45
+        return array('changelog' => $changelog);
46
+    }
47 47
 
48 48
 }
Please login to merge, or discard this patch.
Braces   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -4,11 +4,11 @@  discard block
 block discarded – undo
4 4
 
5 5
 Loader::load('controller', 'site/DefaultPageController');
6 6
 
7
-final class ChangelogController extends DefaultPageController
8
-{
7
+final class ChangelogController extends DefaultPageController
8
+{
9 9
 
10
-	protected function set_head_data()
11
-	{
10
+	protected function set_head_data()
11
+	{
12 12
 		$this->set_title("Changelog for Jacob Emerick's Sites");
13 13
 		$this->set_description("Listing of the last changes done on the framework behind Jacob Emerick's websites. Yeah, he's down with that version control.");
14 14
 		$this->set_keywords(array('changelog', 'version control', 'code', 'comments', 'Jacob Emerick'));
@@ -16,8 +16,8 @@  discard block
 block discarded – undo
16 16
 		parent::set_head_data();
17 17
 	}
18 18
 
19
-	protected function set_body_data()
20
-	{
19
+	protected function set_body_data()
20
+	{
21 21
 		parent::set_body_data();
22 22
 		
23 23
 		$this->set_body('top_data', array('title' => 'Change Log'));
@@ -26,8 +26,8 @@  discard block
 block discarded – undo
26 26
 		$this->set_body('body_view', 'Changelog');
27 27
 	}
28 28
 
29
-	private function get_changelog()
30
-	{
29
+	private function get_changelog()
30
+	{
31 31
     global $container;
32 32
     $changelogRepository = new MysqlChangelogRepository($container['db_connection_locator']);
33 33
     $changelog_result = $changelogRepository->getChanges(40);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     $changelogRepository = new MysqlChangelogRepository($container['db_connection_locator']);
33 33
     $changelog_result = $changelogRepository->getChanges(40);
34 34
 		
35
-		foreach($changelog_result as $change)
35
+		foreach ($changelog_result as $change)
36 36
 		{
37 37
 			$changelog[] = (object) array(
38 38
 				'date' => (object) array(
Please login to merge, or discard this patch.
controller/site/HomeController.class.inc.php 2 patches
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -5,20 +5,20 @@
 block discarded – undo
5 5
 final class HomeController extends DefaultPageController
6 6
 {
7 7
 
8
-	protected function set_head_data()
9
-	{
10
-		$this->set_title("Jacob Emerick's Site Information | General and Technical Information");
11
-		$this->set_description("Meta information about Jacob Emerick's websites and content. Introduces the man behind the code, discusses the reasons behind the sites, and goes into some technical background of the custom framework.");
12
-		$this->set_keywords(array('site', 'technical', 'support', 'help', 'information', 'Jacob Emerick'));
8
+    protected function set_head_data()
9
+    {
10
+        $this->set_title("Jacob Emerick's Site Information | General and Technical Information");
11
+        $this->set_description("Meta information about Jacob Emerick's websites and content. Introduces the man behind the code, discusses the reasons behind the sites, and goes into some technical background of the custom framework.");
12
+        $this->set_keywords(array('site', 'technical', 'support', 'help', 'information', 'Jacob Emerick'));
13 13
 		
14
-		parent::set_head_data();
15
-	}
14
+        parent::set_head_data();
15
+    }
16 16
 
17
-	protected function set_body_data()
18
-	{
19
-		$this->set_body('body_view', 'Home');
17
+    protected function set_body_data()
18
+    {
19
+        $this->set_body('body_view', 'Home');
20 20
 		
21
-		parent::set_body_data();
22
-	}
21
+        parent::set_body_data();
22
+    }
23 23
 
24 24
 }
25 25
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@  discard block
 block discarded – undo
2 2
 
3 3
 Loader::load('controller', 'site/DefaultPageController');
4 4
 
5
-final class HomeController extends DefaultPageController
6
-{
5
+final class HomeController extends DefaultPageController
6
+{
7 7
 
8
-	protected function set_head_data()
9
-	{
8
+	protected function set_head_data()
9
+	{
10 10
 		$this->set_title("Jacob Emerick's Site Information | General and Technical Information");
11 11
 		$this->set_description("Meta information about Jacob Emerick's websites and content. Introduces the man behind the code, discusses the reasons behind the sites, and goes into some technical background of the custom framework.");
12 12
 		$this->set_keywords(array('site', 'technical', 'support', 'help', 'information', 'Jacob Emerick'));
@@ -14,8 +14,8 @@  discard block
 block discarded – undo
14 14
 		parent::set_head_data();
15 15
 	}
16 16
 
17
-	protected function set_body_data()
18
-	{
17
+	protected function set_body_data()
18
+	{
19 19
 		$this->set_body('body_view', 'Home');
20 20
 		
21 21
 		parent::set_body_data();
Please login to merge, or discard this patch.
controller/Error303Controller.class.inc.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -5,13 +5,13 @@
 block discarded – undo
5 5
 class Error303Controller extends PageController
6 6
 {
7 7
 
8
-	public function __construct($uri)
9
-	{
10
-		Header::redirect($uri, 303);
11
-		exit;
12
-	}
8
+    public function __construct($uri)
9
+    {
10
+        Header::redirect($uri, 303);
11
+        exit;
12
+    }
13 13
 
14
-	protected function set_head_data() {}
15
-	protected function set_body_data() {}
14
+    protected function set_head_data() {}
15
+    protected function set_body_data() {}
16 16
 
17 17
 }
Please login to merge, or discard this patch.
Braces   +10 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,16 +2,20 @@
 block discarded – undo
2 2
 
3 3
 Loader::load('controller', '/PageController');
4 4
 
5
-class Error303Controller extends PageController
6
-{
5
+class Error303Controller extends PageController
6
+{
7 7
 
8
-	public function __construct($uri)
9
-	{
8
+	public function __construct($uri)
9
+	{
10 10
 		Header::redirect($uri, 303);
11 11
 		exit;
12 12
 	}
13 13
 
14
-	protected function set_head_data() {}
15
-	protected function set_body_data() {}
14
+	protected function set_head_data()
15
+	{
16
+}
17
+	protected function set_body_data()
18
+	{
19
+}
16 20
 
17 21
 }
Please login to merge, or discard this patch.