Skip to content
This repository has been archived by the owner on Jun 2, 2024. It is now read-only.

Commit

Permalink
Updated changelog and minor comment block updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
timothymarois committed Feb 24, 2019
1 parent a012b72 commit b660650
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Change Log
==========

### 02/24/2019 - 1.0.24
* Merged [Pull Request](https://github.com/filebase/Filebase/pull/50) Fixed [bug](https://github.com/filebase/Filebase/issues/41) returning unexpected results.

### 02/24/2019 - 1.0.23
* Merged [Pull Request](https://github.com/filebase/Filebase/pull/49) Added support for order by multiple columns
* Merged [Pull Request](https://github.com/filebase/Filebase/pull/46) Added ability to query document ids (internal id)
Expand Down
2 changes: 1 addition & 1 deletion src/Database.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Database
* Stores the version of Filebase
* use $db->getVersion()
*/
const VERSION = '1.0.23';
const VERSION = '1.0.24';

/**
* $config
Expand Down
7 changes: 6 additions & 1 deletion src/QueryLogic.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ public function __construct(Database $database)
}
}

/**
* loadDocuments
*
*/
private function loadDocuments()
{
$predicates = $this->predicate->get();
Expand All @@ -60,11 +64,12 @@ private function loadDocuments()

$this->sort();
$this->offsetLimit();
return $this;
return $this;
}
$this->documents = $this->database->findAll(true,false);
return $this;
}

/**
* run
*
Expand Down

0 comments on commit b660650

Please sign in to comment.