This repository has been archived by the owner on Dec 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Lakin Mohapatra
authored and
Lakin Mohapatra
committed
Feb 12, 2016
1 parent
e59ac41
commit f0b0870
Showing
5 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php namespace filemaker_laravel\Database\Eloquent; | ||
|
||
use laravel_filemaker\Database\Query\Builder as QueryBuilder; | ||
use Illuminate\Database\Eloquent\Builder as EloBuilder; | ||
|
||
class Builder extends EloBuilder | ||
{ | ||
/** | ||
* Create a new Eloquent query builder instance. | ||
* | ||
* @param \Illuminate\Database\Query\Builder $query | ||
* @return void | ||
*/ | ||
public function __construct(QueryBuilder $query) | ||
{ | ||
$this->query = $query; | ||
} | ||
|
||
public function testElo() | ||
{ | ||
echo 'eloquent builder'; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php namespace laravel_filemaker\Database\Query; | ||
|
||
use Illuminate\Database\Query\Builder as BaseBuilder; | ||
|
||
class Builder extends BaseBuilder | ||
{ | ||
public function test() | ||
{ | ||
echo 'testBuilder'; | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
Empty file.