Skip to content

Commit

Permalink
regenerate with related field names
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul M. Jones committed May 17, 2018
1 parent e32b236 commit dca81b9
Show file tree
Hide file tree
Showing 16 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/CompositeDataSource/Course/CourseFields.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
* @property mixed $course_subject CHAR(4)
* @property mixed $course_number INT
* @property mixed $title VARCHAR(20)
* @property null|\Atlas\Testing\CompositeDataSource\Enrollment\EnrollmentRecordSet $enrollments
*/
trait CourseFields
{
Expand Down
1 change: 1 addition & 0 deletions src/CompositeDataSource/Degree/DegreeFields.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
* @property mixed $degree_type CHAR(2)
* @property mixed $degree_subject CHAR(4)
* @property mixed $title VARCHAR(50)
* @property null|\Atlas\Testing\CompositeDataSource\Student\StudentRecordSet $students
*/
trait DegreeFields
{
Expand Down
2 changes: 2 additions & 0 deletions src/CompositeDataSource/Enrollment/EnrollmentFields.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
* @property mixed $course_number INT
* @property mixed $grade INT
* @property mixed $points INT
* @property null|false|\Atlas\Testing\CompositeDataSource\Course\CourseRecord $course
* @property null|false|\Atlas\Testing\CompositeDataSource\Student\StudentRecord $student
*/
trait EnrollmentFields
{
Expand Down
4 changes: 4 additions & 0 deletions src/CompositeDataSource/Student/StudentFields.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
* @property mixed $student_ln VARCHAR(10)
* @property mixed $degree_type CHAR(2)
* @property mixed $degree_subject CHAR(4)
* @property null|false|\Atlas\Testing\CompositeDataSource\Gpa\GpaRecord $gpa
* @property null|false|\Atlas\Testing\CompositeDataSource\Degree\DegreeRecord $degree
* @property null|\Atlas\Testing\CompositeDataSource\Enrollment\EnrollmentRecordSet $enrollments
* @property null|\Atlas\Testing\CompositeDataSource\Enrollment\EnrollmentRecordSet $engl_enrollments
*/
trait StudentFields
{
Expand Down
2 changes: 2 additions & 0 deletions src/DataSource/Author/AuthorFields.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
/**
* @property mixed $author_id INTEGER
* @property mixed $name VARCHAR(10) NOT NULL
* @property null|\Atlas\Testing\DataSource\Reply\ReplyRecordSet $replies
* @property null|\Atlas\Testing\DataSource\Thread\ThreadRecordSet $threads
*/
trait AuthorFields
{
Expand Down
1 change: 1 addition & 0 deletions src/DataSource/Bidibar/BidibarFields.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
* @property mixed $bidibar_id INTEGER
* @property mixed $bidifoo_id INTEGER
* @property mixed $name VARCHAR(10)
* @property null|false|\Atlas\Testing\DataSource\Bidifoo\BidifooRecord $bidifoo
*/
trait BidibarFields
{
Expand Down
1 change: 1 addition & 0 deletions src/DataSource/Bidifoo/BidifooFields.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
* @property mixed $bidifoo_id INTEGER
* @property mixed $bidibar_id INTEGER
* @property mixed $name VARCHAR(10)
* @property null|false|\Atlas\Testing\DataSource\Bidibar\BidibarRecord $bidibar
*/
trait BidifooFields
{
Expand Down
1 change: 1 addition & 0 deletions src/DataSource/Comment/CommentFields.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
* @property mixed $related_type VARCHAR(255)
* @property mixed $related_id INTEGER
* @property mixed $body TEXT
* @property null|false|\Atlas\Mapper\Record $commentable (variant)
*/
trait CommentFields
{
Expand Down
1 change: 1 addition & 0 deletions src/DataSource/Page/PageFields.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
* @property mixed $page_id INTEGER
* @property mixed $title VARCHAR(255)
* @property mixed $body TEXT
* @property null|\Atlas\Testing\DataSource\Comment\CommentRecordSet $comments
*/
trait PageFields
{
Expand Down
1 change: 1 addition & 0 deletions src/DataSource/Post/PostFields.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
* @property mixed $post_id INTEGER
* @property mixed $subj VARCHAR(255)
* @property mixed $body TEXT
* @property null|\Atlas\Testing\DataSource\Comment\CommentRecordSet $comments
*/
trait PostFields
{
Expand Down
1 change: 1 addition & 0 deletions src/DataSource/Reply/ReplyFields.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
* @property mixed $thread_id INTEGER NOT NULL
* @property mixed $author_id INTEGER NOT NULL
* @property mixed $body TEXT
* @property null|false|\Atlas\Testing\DataSource\Author\AuthorRecord $author
*/
trait ReplyFields
{
Expand Down
1 change: 1 addition & 0 deletions src/DataSource/Summary/SummaryFields.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
* @property mixed $thread_id INTEGER NOT NULL
* @property mixed $reply_count INTEGER NOT NULL
* @property mixed $view_count INTEGER NOT NULL
* @property null|false|\Atlas\Testing\DataSource\Thread\ThreadRecord $thread
*/
trait SummaryFields
{
Expand Down
1 change: 1 addition & 0 deletions src/DataSource/Tag/TagFields.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
/**
* @property mixed $tag_id INTEGER
* @property mixed $name VARCHAR(10) NOT NULL
* @property null|\Atlas\Testing\DataSource\Tagging\TaggingRecordSet $taggings
*/
trait TagFields
{
Expand Down
2 changes: 2 additions & 0 deletions src/DataSource/Tagging/TaggingFields.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
* @property mixed $tagging_id INTEGER
* @property mixed $thread_id INTEGER NOT NULL
* @property mixed $tag_id INTEGER NOT NULL
* @property null|false|\Atlas\Testing\DataSource\Thread\ThreadRecord $thread
* @property null|false|\Atlas\Testing\DataSource\Tag\TagRecord $tag
*/
trait TaggingFields
{
Expand Down
4 changes: 4 additions & 0 deletions src/DataSource/Thread/ThreadFields.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
* @property mixed $author_id INTEGER NOT NULL
* @property mixed $subject VARCHAR(255) NOT NULL
* @property mixed $body TEXT NOT NULL
* @property null|false|\Atlas\Testing\DataSource\Author\AuthorRecord $author
* @property null|false|\Atlas\Testing\DataSource\Summary\SummaryRecord $summary
* @property null|\Atlas\Testing\DataSource\Reply\ReplyRecordSet $replies
* @property null|\Atlas\Testing\DataSource\Tagging\TaggingRecordSet $taggings
*/
trait ThreadFields
{
Expand Down
1 change: 1 addition & 0 deletions src/DataSource/Video/VideoFields.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
* @property mixed $video_id INTEGER
* @property mixed $title VARCHAR(255)
* @property mixed $url VARCHAR(255)
* @property null|\Atlas\Testing\DataSource\Comment\CommentRecordSet $comments
*/
trait VideoFields
{
Expand Down

0 comments on commit dca81b9

Please sign in to comment.