Browse Source

missing ObjectAdapter

Andreas von Burg 3 năm trước cách đây
mục cha
commit
0669dd08e7
1 tập tin đã thay đổi với 3 bổ sung1 xóa
  1. 3 1
      src-php/app/internship/bo/Article.php

+ 3 - 1
src-php/app/internship/bo/Article.php

@@ -1,7 +1,9 @@
 <?php
 namespace internship\bo;
 
-class Article implements \JsonSerializable {
+use n2n\reflection\ObjectAdapter;
+
+class Article extends ObjectAdapter implements \JsonSerializable {
 	private int $id;
 	private string $categoryName;
 	private string $text;