Ver código fonte

Fix missing semicolon in PostAdmin example

Miquel Rodríguez Telep 13 anos atrás
pai
commit
7f76d87f3c
1 arquivos alterados com 1 adições e 0 exclusões
  1. 1 0
      README.md

+ 1 - 0
README.md

@@ -89,6 +89,7 @@ class PostAdmin extends Admin
             ->add('title')
             ->add('title')
             ->add('enabled')
             ->add('enabled')
             ->add('tags', null, array('filter_field_options' => array('expanded' => true, 'multiple' => true)))
             ->add('tags', null, array('filter_field_options' => array('expanded' => true, 'multiple' => true)))
+        ;
     }
     }
 }
 }
 ```
 ```