Created
May 27, 2020 00:51
-
-
Save nickstewart95/7bbf59b1dd54a4cd2a3287851b66aa25 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public function createObject() { | |
$object = [ | |
'_id' => $this->id, | |
'_type' => 'employee', | |
'name' => $this->name, | |
'slug' => $this->slug, | |
]; | |
return $object; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment