OwlCyberSecurity - MANAGER
Edit File: NamespacedEntityInterface.php
<?php /** * Part of the Support package. * * NOTICE OF LICENSE * * Licensed under the Cartalyst PSL License. * * This source file is subject to the Cartalyst PSL License that is * bundled with this package in the LICENSE file. * * @package Support * @version 2.0.3 * @author Cartalyst LLC * @license Cartalyst PSL * @copyright (c) 2011-2019, Cartalyst LLC * @link https://cartalyst.com */ namespace Cartalyst\Support\Contracts; interface NamespacedEntityInterface { /** * Returns the entity namespace. * * @return string */ public static function getEntityNamespace(); /** * Sets the entity namespace. * * @param string $namespace * @return void */ public static function setEntityNamespace($namespace); }