Completed
Pull Request — master (#1)
by Nic
04:50
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
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
         $processTitle = ($this->getIsEditing()) ? "Update {$this->i18n_singular_name()}" : "Create {$this->i18n_singular_name()}";
51 51
         $actions = FieldList::create(
52 52
             FormAction::create('doProcessWishList')
53
-                      ->setTitle($processTitle)
53
+                        ->setTitle($processTitle)
54 54
         );
55 55
 
56 56
         if ($showCancel === true) {
Please login to merge, or discard this patch.
tests/ProductWishListControllerExtensionTest.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -7,21 +7,21 @@  discard block
 block discarded – undo
7 7
 {
8 8
 
9 9
     /**
10
-     * @var string
11
-     *
10
+ * @var string
11
+ *
12 12
     protected static $fixture_file = 'product-wishlist/tests/fixtures.yml';
13 13
 
14 14
     /**
15
-     * @var array
16
-     *
15
+ * @var array
16
+ *
17 17
     protected $extraDataObjects = [
18 18
         'TestWishListPage',
19 19
         'TestProductWishList',
20 20
     ];
21 21
 
22 22
     /**
23
-     *
24
-     *
23
+ *
24
+ *
25 25
     public function setUp()
26 26
     {
27 27
         parent::setUp();
@@ -33,8 +33,8 @@  discard block
 block discarded – undo
33 33
     }//*
34 34
 
35 35
     /**
36
-     *
37
-     *
36
+ *
37
+ *
38 38
     public function testProductWishListForm()
39 39
     {
40 40
         $controller = new TestWishListPage_Controller($this->objFromFixture('TestWishListPage', 'one'));
@@ -42,8 +42,8 @@  discard block
 block discarded – undo
42 42
     }//*
43 43
 
44 44
     /**
45
-     *
46
-     *
45
+ *
46
+ *
47 47
     public function testProductWishListFormPorcessing()
48 48
     {
49 49
         /*$controller = TestWishListPage_Controller::create($this->objFromFixture('TestWishListPage', 'one'));
Please login to merge, or discard this patch.