Skip to content

Commit a427ca6

Browse files
committed
Credits To Shawn McCool For Some Code
Signed-off-by: David Thorpe <[email protected]>
1 parent 480a7c1 commit a427ca6

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/Davzie/LaravelBootstrap/Core/EloquentBaseModel.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
use Davzie\LaravelBootstrap\Core\Exceptions\NoValidationRulesFoundException;
33
use Validator, Eloquent, ReflectionClass, Input;
44

5+
/**
6+
* Base Eloquent Class Built On From Shawn McCool <-- This guy is pretty amazing
7+
*/
58
class EloquentBaseModel extends Eloquent
69
{
710
protected $validationRules = [];

src/Davzie/LaravelBootstrap/Core/EloquentBaseRepository.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
<?php namespace Davzie\LaravelBootstrap\Core;
22
use Davzie\LaravelBootstrap\Core\Exceptions\EntityNotFoundException;
33

4+
/**
5+
* Base Eloquent Repository Class Built On From Shawn McCool <-- This guy is pretty amazing
6+
*/
47
class EloquentBaseRepository
58
{
69
protected $model;

0 commit comments

Comments
 (0)