for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
*
*/
* @author Laurent De Coninck <[email protected]>
class MonthlyBillableQuery
{
* @var int
private $month;
private $year;
* @param int $month
* @param int $year
public function __construct($month, $year)
$this->month = $month;
$this->year = $year;
}
* @return int
public function getMonth()
return $this->month;
public function getYear()
return $this->year;