partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit 97311293b77bf90ac8fd281155985e2fd71e2237
parent f10e707b6b8781ec2b095eb216975253cb227753
Author: Felicitus <felicitus@felicitus.org>
Date:   Wed,  4 Apr 2012 05:43:57 +0200

Added missing parameter docs

Diffstat:
Msrc/backend/de/RaumZeitLabor/PartKeepr/System/SystemService.php | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/src/backend/de/RaumZeitLabor/PartKeepr/System/SystemService.php b/src/backend/de/RaumZeitLabor/PartKeepr/System/SystemService.php @@ -77,6 +77,9 @@ class SystemService extends Service { /** * Checks if the schema is up-to-date. If yes, it returns "complete", if not, it returns "incomplete". + * + * @param none + * @return string Either "complete" or "incomplete" */ protected function getSchemaStatus () { $metadatas = PartKeepr::getEM()->getMetadataFactory()->getAllMetadata(); @@ -91,4 +94,6 @@ class SystemService extends Service { return "complete"; } } + + } \ No newline at end of file