PHP Classes

File: app/Support/Repository/Commands/stubs/repository-interface-stub

Recommend this page to a friend!
  Classes of Kevinralph M Tenorio   Lumen API PureMVC MultiCore Framework for PHP   app/Support/Repository/Commands/stubs/repository-interface-stub   Download  
File: app/Support/Repository/Commands/stubs/repository-interface-stub
Role: Application script
Content type: text/plain
Description: Repository Interface Stub
Class: Lumen API PureMVC MultiCore Framework for PHP
Implements repository pattern using Laravel Lumen
Author: By
Last change:
Date: 6 years ago
Size: 289 bytes
 

Contents

Class file image Download
<?php

namespace {{repositoryInterfaceNamespace}};

use
App\Support\Repository\Contracts\RepositoryInterface;

/**
 * Interface {{repositoryInterfaceName}}
 * @package {{repositoryInterfaceNamespace}}
 */
interface {{repositoryInterfaceName}} extends RepositoryInterface
{
  
// Nothing
}