Skip to content

Commit 801ecee

Browse files
committed
Making package a mouf package
1 parent e009eab commit 801ecee

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "This package contains classes useful to generate SQL statements such as SELECT queries, etc...",
44
"keywords": ["database", "query", "mouf"],
55
"homepage": "https://github.com/thecodingmachine/database.querywriter",
6-
"type": "library",
6+
"type": "mouf-library",
77
"license": "MIT",
88
"authors": [
99
{

src/Mouf/Database/QueryWriter/Filters/FilterInterface.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,15 @@
1919

2020
namespace Mouf\Database\QueryWriter\Filters;
2121

22+
use Mouf\Database\QueryWriter\Expressions\ExpressionInterface;
23+
2224
/**
2325
* Represents a SQL statement that can appear in a WHERE clause (or in a ON clause).
2426
*
2527
* @author David Negrier
2628
* @Component
2729
*/
28-
interface FilterInterface extends \Mouf\Database\QueryWriter\ExpressionInterface {
30+
interface FilterInterface extends ExpressionInterface {
2931

3032
/**
3133
* Returns the tables used in the filter in an array.

0 commit comments

Comments
 (0)