Skip to content

Instantly share code, notes, and snippets.

@lowenthal-jason
Created December 16, 2015 16:21
Show Gist options
  • Save lowenthal-jason/4885a5dcb5ef11597864 to your computer and use it in GitHub Desktop.
Save lowenthal-jason/4885a5dcb5ef11597864 to your computer and use it in GitHub Desktop.
Example domain class written in PHP for Multilingual Programming post on Simple Programmer
<?php
namespace Starfleet\Entity;
class StarfleetCadet
{
private $klingonSpeaker;
public function isKlingonSpeaker()
{
return $this->klingonSpeaker;
}
public function setKlingonSpeaker($klingonSpeaker)
{
$this->klingonSpeaker = $klingonSpeaker;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment