spotonlive/sl-navigation

View on GitHub
src/SpotOnLive/Navigation/Services/NavigationServiceInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace SpotOnLive\Navigation\Services;

interface NavigationServiceInterface
{
    /**
     * Get container from name
     *
     * @param $name
     * @return \SpotOnLive\Navigation\Navigation\Container
     * @throws \SpotOnLive\Navigation\Exceptions\ContainerException
     */
    public function getContainer($name);
}