1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace Sonata\CoreBundle\Model\Adapter;
- interface AdapterInterface
- {
- const ID_SEPARATOR = '~';
-
- public function getNormalizedIdentifier($model);
-
- public function getUrlsafeIdentifier($model);
- }
|