Skip to content
Open
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
8 changes: 8 additions & 0 deletions src/Model/Meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,14 @@ public function getCreated()
return $this->created;
}

/**
* @param \DateTime $created
*/
public function setCreated(\DateTime $created)
{
$this->created = $created;
}

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Build have failed. php-cs-fixer is complaining about whitespace in this line

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's strange, I copied the code from setLastModified() and only changed the names.
Could you please provide the exact message from php-cs-fixer?

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Click the red link below that says Travis failed, and find the php 7 build where php cs fixer is executed and you'll see the error message in the build log
https://travis-ci.org/tmilos/scim-schema/jobs/612621460

/**
* @return \DateTime
*/
Expand Down