Skip to content

Commit

Permalink
Move Query into parent Tags namespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
jesseleite committed Feb 28, 2020
1 parent 315cf49 commit ba69a33
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/Tags/Query/Query.php → src/Tags/Query.php
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<?php

namespace Statamic\Tags\Query;
namespace Statamic\Tags;

use Statamic\Tags\Concerns;
use Statamic\Tags\Tags;
use Statamic\Tags\OutputsItems;

class Query extends Tags
{
use GetsResults,
OutputsItems,
HasConditions,
HasOrderBys,
HasScopes;
use Concerns\QueriesConditions,
Concerns\QueriesScopes,
Concerns\QueriesOrderBys,
Concerns\GetsQueryResults,
Concerns\OutputsItems;

/**
* {{ query builder="" }} ... {{ /query }}
Expand Down

0 comments on commit ba69a33

Please sign in to comment.