summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Cornutt <enygma@phpdeveloper.org>2015-07-03 06:37:35 -0500
committerChris Cornutt <enygma@phpdeveloper.org>2015-07-03 06:37:35 -0500
commit688a055af828fa76d1945118aa44c8c3a6743814 (patch)
treed7dfc2fd4cf84537d0282c672f255531e60c904c
parent4fed2fbeb1a5ae95068c5c29f0c842d312d25278 (diff)
downloadgatekeeper-688a055af828fa76d1945118aa44c8c3a6743814.zip
gatekeeper-688a055af828fa76d1945118aa44c8c3a6743814.tar.gz
gatekeeper-688a055af828fa76d1945118aa44c8c3a6743814.tar.bz2
fixing misspelling in Policy model name in policy collection
-rw-r--r--src/Psecio/Gatekeeper/PolicyCollection.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Psecio/Gatekeeper/PolicyCollection.php b/src/Psecio/Gatekeeper/PolicyCollection.php
index 8f390fe..87a22c8 100644
--- a/src/Psecio/Gatekeeper/PolicyCollection.php
+++ b/src/Psecio/Gatekeeper/PolicyCollection.php
@@ -18,7 +18,7 @@ class PolicyCollection extends \Psecio\Gatekeeper\Collection\Mysql
$results = $this->getDb()->fetch($sql);
foreach ($results as $result) {
- $policy = new PolicyMoel($this->getDb(), $result);
+ $policy = new PolicyModel($this->getDb(), $result);
$this->add($policy);
}
}