Completed
Push — master ( fb1da0...84ba9e )
by Nic
10s
created
code/dataobjects/ProductWishList.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
     }
98 98
 
99 99
     /**
100
-     * @return String|bool
100
+     * @return string|false
101 101
      */
102 102
     public function getUpdateLink()
103 103
     {
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
         $processTitle = ($this->getIsEditing()) ? "Update {$this->i18n_singular_name()}" : "Create {$this->i18n_singular_name()}";
69 69
         $actions = FieldList::create(
70 70
             FormAction::create('doSaveObject')
71
-                      ->setTitle($processTitle)
71
+                        ->setTitle($processTitle)
72 72
         );
73 73
 
74 74
         if ($showCancel === true) {
Please login to merge, or discard this patch.
tests/ProductWishListControllerExtensionTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     public function testView()
39 39
     {
40 40
         $wishList = $this->objFromFixture('TestProductWishList', 'one');
41
-        $response = $this->get('/TestWishListPage_Controller/view/' . $wishList->ID);
41
+        $response = $this->get('/TestWishListPage_Controller/view/'.$wishList->ID);
42 42
         $this->assertEquals(200, $response->getStatusCode());
43 43
     }
44 44
 
Please login to merge, or discard this patch.