From 8d6dcd1cca4d278c8e0ea0f643d2555b6ae8d4c3 Mon Sep 17 00:00:00 2001 From: "as2252258@163.com" Date: Sat, 24 Apr 2021 19:39:34 +0800 Subject: [PATCH] modify --- Annotation/Annotation.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Annotation/Annotation.php b/Annotation/Annotation.php index 5aba9d8f..8212a94d 100644 --- a/Annotation/Annotation.php +++ b/Annotation/Annotation.php @@ -32,6 +32,7 @@ class Annotation extends Component public function addSets(string $class, string $setName, string $method) { $this->_model_sets[$class . '::' . $setName] = $method; + var_dump($this->_model_sets); } /** @@ -42,6 +43,7 @@ class Annotation extends Component public function addGets(string $class, string $setName, string $method) { $this->_model_gets[$class . '::' . $setName] = $method; + var_dump($this->_model_gets); } /** @@ -52,6 +54,7 @@ class Annotation extends Component public function addRelate(string $class, string $setName, string $method) { $this->_model_relate[$class . '::' . $setName] = $method; + var_dump($this->_model_relate); }