Browse Source

[SoftDeleteable] Fixed docs

comfortablynumb 13 năm trước cách đây
mục cha
commit
015475a177
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      doc/softdeleteable.md

+ 2 - 2
doc/softdeleteable.md

@@ -43,10 +43,10 @@ And then you can access the filter from your EntityManager to enable or disable
 ``` php
 ``` php
 // This will enable the SoftDeleteable filter, so entities which were "soft-deleted" will not appear
 // This will enable the SoftDeleteable filter, so entities which were "soft-deleted" will not appear
 // in results
 // in results
-$em->getFilters()->enable('soft-deleteable);
+$em->getFilters()->enable('soft-deleteable');
 
 
 // This will disable the SoftDeleteable filter, so entities which were "soft-deleted" will appear in results
 // This will disable the SoftDeleteable filter, so entities which were "soft-deleted" will appear in results
-$em->getFilters()->disable('soft-deleteable);
+$em->getFilters()->disable('soft-deleteable');
 ```
 ```
 
 
 <a name="entity-mapping"></a>
 <a name="entity-mapping"></a>