Skip to content

Instantly share code, notes, and snippets.

@adammbalogh
Created October 12, 2016 08:07
Show Gist options
  • Save adammbalogh/aa1656ae4c217d00bdf0a57a17f2529b to your computer and use it in GitHub Desktop.
Save adammbalogh/aa1656ae4c217d00bdf0a57a17f2529b to your computer and use it in GitHub Desktop.
<?php
class DbTask extends Task
{
/**
* @param int $id
* @param string $name
*/
public function __construct($id, $name)
{
parent::__construct($name);
$this->id = $id;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment