Skip to content

Commit 688d376

Browse files
committed
add package info
1 parent d85b485 commit 688d376

22 files changed

+85
-0
lines changed

src/Ubiquity/annotations/parser/DocFormater.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
*
1212
* @author jcheron <[email protected]>
1313
* @version 1.0.0
14+
* @package ubiquity.dev
1415
*
1516
*/
1617
class DocFormater {

src/Ubiquity/annotations/parser/DocParser.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@
55

66
use Ubiquity\utils\base\UString;
77

8+
/**
9+
* Ubiquity\annotations\parser$DocParser
10+
* This class is part of Ubiquity
11+
* @author jcheron <[email protected]>
12+
* @version 1.0.0
13+
* @package ubiquity.dev
14+
*
15+
*/
816
class DocParser {
917
private $originalContent;
1018
private $lines;

src/Ubiquity/controllers/admin/popo/Route.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
namespace Ubiquity\controllers\admin\popo;
44

5+
/**
6+
* Ubiquity\controllers\admin\popo$Route
7+
* This class is part of Ubiquity
8+
* @author jcheron <[email protected]>
9+
* @version 1.0.0
10+
* @package ubiquity.dev
11+
*
12+
*/
513
class Route {
614
private $path;
715
private $controller;

src/Ubiquity/db/export/DataExport.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44

55
use Ubiquity\db\SqlUtils;
66

7+
/**
8+
* Ubiquity\db\export$DataExport
9+
* This class is part of Ubiquity
10+
* @author jcheron <[email protected]>
11+
* @version 1.0.0
12+
* @package ubiquity.dev
13+
*
14+
*/
715
class DataExport {
816
protected $batchSize;
917

src/Ubiquity/db/export/DbExport.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
*
1515
* @author jcheron <[email protected]>
1616
* @version 1.0.1
17+
* @package ubiquity.dev
1718
*
1819
*/
1920
class DbExport {

src/Ubiquity/db/export/SqlExport.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44

55
use Ubiquity\orm\DAO;
66

7+
/**
8+
* Ubiquity\db\export$SqlExport
9+
* This class is part of Ubiquity
10+
* @author jcheron <[email protected]>
11+
* @version 1.0.0
12+
* @package ubiquity.dev
13+
*
14+
*/
715
class SqlExport extends DataExport {
816

917
public function __construct($batchSize=5) {

src/Ubiquity/db/export/TableExport.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@
55
use Ubiquity\orm\OrmUtils;
66
use Ubiquity\orm\DAO;
77

8+
/**
9+
* Ubiquity\db\export$TableExport
10+
* This class is part of Ubiquity
11+
* @author jcheron <[email protected]>
12+
* @version 1.0.0
13+
* @package ubiquity.dev
14+
*
15+
*/
816
class TableExport extends DataExport{
917
protected $model;
1018
protected $metas;

src/Ubiquity/db/reverse/DbGenerator.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@
77
use Ubiquity\cache\ClassUtils;
88
use Ubiquity\db\utils\DbTypes;
99

10+
/**
11+
* Ubiquity\db\reverse$DbGenerator
12+
* This class is part of Ubiquity
13+
* @author jcheron <[email protected]>
14+
* @version 1.0.0
15+
* @package ubiquity.dev
16+
*
17+
*/
1018
class DbGenerator {
1119
protected $nameProtection;
1220
protected $createDatabaseMask;

src/Ubiquity/orm/creator/Member.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@
1111
use Ubiquity\annotations\ColumnAnnotation;
1212
use Ubiquity\contents\validation\ValidationModelGenerator;
1313

14+
/**
15+
* Ubiquity\orm\creator$Member
16+
* This class is part of Ubiquity
17+
* @author jcheron <[email protected]>
18+
* @version 1.0.0
19+
* @package ubiquity.dev
20+
*
21+
*/
1422
class Member {
1523
private $name;
1624
private $primary;

src/Ubiquity/orm/creator/Model.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
*
1010
* @author jcheron <[email protected]>
1111
* @version 1.0.1
12+
* @package ubiquity.dev
1213
*
1314
*/
1415
class Model {

0 commit comments

Comments
 (0)