Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MNT Update @methods on class docblocks #428

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/ChangeSet.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@
* The ChangeSet model tracks several VersionedAndStaged objects for later publication as a single
* atomic action
*
* @method HasManyList Changes()
* @method Member Owner()
* @method Member Publisher()
* @property string $Name
* @property string $State one of 'open', 'published', or 'reverted'
* @property bool $IsInferred
* @property string $LastSynced Last synced date
* @method HasManyList<ChangeSetItem> Changes()
* @method Member Owner()
* @method Member Publisher()
*/
class ChangeSet extends DataObject
{
Expand Down
8 changes: 4 additions & 4 deletions src/ChangeSetItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@
* @property int $ChangeSetID ID of parent ChangeSet object
* @property int $VersionBefore
* @property int $VersionAfter
* @method ManyManyList ReferencedBy() List of explicit items that require this change
* @method ManyManyList References() List of implicit items required by this change
* @method ChangeSet ChangeSet() Parent changeset
* @method DataObject Object() The object attached to this item
* @method ChangeSet ChangeSet()
* @method DataObject Object()
* @method ManyManyList<ChangeSetItem> ReferencedBy()
* @method ManyManyList<ChangeSetItem> References()
*/
class ChangeSetItem extends DataObject implements Thumbnail
{
Expand Down