Explorar o código

[SoftDeleteable] Fixed docs

comfortablynumb %!s(int64=13) %!d(string=hai) anos
pai
achega
015475a177
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  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
 // This will enable the SoftDeleteable filter, so entities which were "soft-deleted" will not appear
 // 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
-$em->getFilters()->disable('soft-deleteable);
+$em->getFilters()->disable('soft-deleteable');
 ```
 
 <a name="entity-mapping"></a>