brokencube/automatorm

View on GitHub
src/Interfaces/WrappedModel.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace Automatorm\Interfaces;

use Automatorm\Orm\Model;

interface WrappedModel 
{
    /**
     * Return the wrapped Model
     *
     * @return Model
     */
    public function getModel() : Model;
}