Which statements about the following code snippet are correct? (2)
<?php
  namespace Vendor\MyExtension\Domain\Repository;
  use \TYPO3\CMS\Extbase\Persistence\Repository;
  use \TYPO3\CMS\Extbase\Persistence\QueryInterface;
class ExampleRepository extends Repository
{
     protected $defaultOrderings = [
          'title' => QueryInterface::ORDER_DESCENDING
     ];
...
}
Select one or more of the following: