Created
October 12, 2016 08:07
-
-
Save adammbalogh/aa1656ae4c217d00bdf0a57a17f2529b 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
<?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