Файл: gapps/vendor/cartalyst/support/src/Contracts/NamespacedEntityInterface.php
Строк: 32
<?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.1
* @author Cartalyst LLC
* @license Cartalyst PSL
* @copyright (c) 2011-2017, Cartalyst LLC
* @link http://cartalyst.com
*/
namespace CartalystSupportContracts;
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);
}