Skip to content

Commit

Permalink
MNT Update @methods on class docblocks
Browse files Browse the repository at this point in the history
  • Loading branch information
emteknetnz committed Dec 14, 2023
1 parent 2c333aa commit c28aa98
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
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

0 comments on commit c28aa98

Please sign in to comment.