소스 검색

add missing spaces

Mike Meier 12 년 전
부모
커밋
3d8818dd2c
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      Admin/FieldDescriptionCollection.php

+ 2 - 1
Admin/FieldDescriptionCollection.php

@@ -117,9 +117,10 @@ class FieldDescriptionCollection implements \ArrayAccess, \Countable
      */
     public function reorder(array $keys)
     {
-        if($this->has('batch')){
+        if ($this->has('batch')) {
             array_unshift($keys, 'batch');
         }
+
         $this->elements = array_merge(array_flip($keys), $this->elements);
     }
 }