Completed
Pull Request — master (#20)
by Jason
14:23
created
tests/Elements/ElementSlideshowTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     public function testGetSummary()
30 30
     {
31 31
         $object = $this->objFromFixture(ElementSlideshow::class, 'one');
32
-        $result = $object->Slides()->count() . ' slide';
32
+        $result = $object->Slides()->count().' slide';
33 33
         $this->assertEquals($object->getSummary(), $result);
34 34
     }
35 35
 
Please login to merge, or discard this patch.
src/Elements/ElementSlideshow.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     {
55 55
         $labels = parent::fieldLabels($includerelations);
56 56
 
57
-        $labels['Content'] = _t(__CLASS__.'.ContentLabel', 'Description');
57
+        $labels[ 'Content' ] = _t(__CLASS__.'.ContentLabel', 'Description');
58 58
 
59 59
         return $labels;
60 60
     }
@@ -64,10 +64,10 @@  discard block
 block discarded – undo
64 64
      */
65 65
     public function getCMSFields()
66 66
     {
67
-        $this->beforeUpdateCMSFields(function (FieldList $fields) {
67
+        $this->beforeUpdateCMSFields(function(FieldList $fields) {
68 68
             $fields->dataFieldByName('Content')
69 69
                 ->setRows(5)
70
-                ->setDescription(_t(__CLASS__ . '.ContentDescription', 'optional. Add introductory copy to your slideshow.'));
70
+                ->setDescription(_t(__CLASS__.'.ContentDescription', 'optional. Add introductory copy to your slideshow.'));
71 71
         });
72 72
 
73 73
         return parent::getCMSFields();
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
     {
81 81
         $count = $this->Slides()->count();
82 82
         $label = _t(
83
-            SlideImage::class . '.PLURALS',
83
+            SlideImage::class.'.PLURALS',
84 84
             '{count} Slide|{count} Slides',
85 85
             [ 'count' => $count ]
86 86
         );
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
     protected function provideBlockSchema()
94 94
     {
95 95
         $blockSchema = parent::provideBlockSchema();
96
-        $blockSchema['content'] = $this->getSummary();
96
+        $blockSchema[ 'content' ] = $this->getSummary();
97 97
         return $blockSchema;
98 98
     }
99 99
 
Please login to merge, or discard this patch.