Skip to content

Commit

Permalink
mvc model abstract trait identity
Browse files Browse the repository at this point in the history
  • Loading branch information
jturbide committed Aug 3, 2023
1 parent 6773ab5 commit a1c0a84
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/Mvc/Model/AbstractTrait/AbstractIdentity.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php

/**
* This file is part of the Zemit Framework.
*
* (c) Zemit Team <contact@zemit.com>
*
* For the full copyright and license information, please view the LICENSE.txt
* file that was distributed with this source code.
*/

namespace Zemit\Mvc\Model\AbstractTrait;

trait AbstractIdentity
{
abstract public function getIdentity(): \Zemit\Identity;
}

0 comments on commit a1c0a84

Please sign in to comment.