for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* User: Maike Oliveira
* Date: 24/10/17
* Time: 09:03
*/
namespace MocOrm\Model;
use MocOrm\Support\Log;
class Result
{
* @var $last_function Last function execute on ORM
$last_function
0
private $last_function;
* @var $results Last result orm
$results
private $results;
* @var Log
private $Log;
$Log
This check marks private properties in classes that are never used. Those properties can be removed.
public function __construct()
// $this->Log = new Log;
}
* @return mixed
public function getLastFunction()
return $this->last_function;
* @param mixed $last_function
public function setLastFunction($last_function)
$this->last_function = $last_function;
public function getResults()
return $this->results;
* @param mixed $results
public function setResults($results)
$this->results = $results;