From 1b564dd56292126f4ae984283f881fdc3a183b86 Mon Sep 17 00:00:00 2001 From: Jordan Doyle Date: Tue, 18 Oct 2016 22:56:55 +0100 Subject: [PATCH] phpdoc for query proxy --- src/Proxy/Query.php | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 54 insertions(+), 2 deletions(-) diff --git a/src/Proxy/Query.php b/src/Proxy/Query.php index fe9c4d6..a0b077e 100644 --- a/src/Proxy/Query.php +++ a/src/Proxy/Query.php @@ -1,12 +1,65 @@ */ class Query @@ -49,8 +102,7 @@ $name = str_replace('has', 'have', $name); if (!method_exists($this->query, $name)) { - // try and find the method that was attempted to be called. Makes for a lot nicer code when reading over - // it. + // try and find the method that was attempted to be called. Makes for a lot nicer code when reading over it. if (method_exists($this->query, 'the_' . $name)) { $name = 'the_' . $name; } elseif (method_exists($this->query, 'is_' . $name)) { -- rgit 0.1.5