Skip to content
Snippets Groups Projects
Select Git revision
  • 99a104db48f0e560600d3eee4aff1d084a93209b
  • main default protected
  • demo protected
  • master
  • icon-set-mapping
  • production protected
  • revert-62666d1a
  • favorites-and-recent-files
  • lit2
  • wc-part
  • mark-downloaded-files
  • feature/annotpdf-test
  • fix-zip-upload
  • config-cleanup
  • wip
  • app-shell-update
16 results

dbp-signature.js

Blame
  • UserRolesInterface.php 258 B
    <?php
    
    declare(strict_types=1);
    
    namespace Dbp\Relay\AuthBundle\API;
    
    interface UserRolesInterface
    {
        /**
         * @param string[] $scopes
         *
         * @return string[]
         */
        public function getRoles(?string $userIdentifier, array $scopes): array;
    }