Subversion-Projekte lars-tiefland.laravel_shop

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
148 lars 1
<?php
2
 
3
namespace Faker\Container;
4
 
5
use Psr\Container\ContainerInterface as BaseContainerInterface;
6
 
7
interface ContainerInterface extends BaseContainerInterface
8
{
9
    /**
10
     * Get the bindings between Extension interfaces and implementations.
11
     */
12
    public function getDefinitions(): array;
13
}