Skip to content

Instantly share code, notes, and snippets.

@Hollerer
Created December 12, 2012 11:02
Show Gist options
  • Save Hollerer/4266956 to your computer and use it in GitHub Desktop.
Save Hollerer/4266956 to your computer and use it in GitHub Desktop.
<?php
namespace MY\Package\Domain\Dto;
class ParentsDto {
/**
* @var \MY\Package\Domain\Model\Parents
*/
protected $myparents;
/**
* @var \MY\Package\Domain\Model\Children
*/
protected $mychildren;
/**
* Get the Parent's
*
* @return \MY\Package\Domain\Model\Parents
*/
public function getMyparents() {
return $this->myparents;
}
/**
* Sets this Objekte's objektwohnraum
*
* @param \My\Package\Domain\Model\Parents $myparents
* @return void
*/
public function setMyparents($myparents) {
$this->myparents = $myparents;
}
/**
* Get the Objekte's objekt
*
* @return \MY\Package\Domain\Model\Children
*/
public function getMychildren() {
return $this->mychildren;
}
/**
* Sets this Objekte's objekt
*
* @param \MY\Package\Domain\Model\Children $mychildren
* @return void
*/
public function setMychildren($mychildren) {
$this->mychildren = $mychildren;
}
}
?>
@Hollerer
Copy link
Author

the dto for parent and children

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment