Skip to content

Instantly share code, notes, and snippets.

@cn007b
Last active August 16, 2018 12:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cn007b/f4705eb227dc949370f1630d5afc0139 to your computer and use it in GitHub Desktop.
Save cn007b/f4705eb227dc949370f1630d5afc0139 to your computer and use it in GitHub Desktop.
Value Object instead of Form - Form
<?php
class Form
{
protected $name;
public function getName()
{
return $this->name;
}
public function setName($name)
{
$this->name = $name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment