src/Models/Industry/CorporationIndustryMiningExtraction.php
The method extraction_length is not named in camelCase. Open
Open
public function extraction_length()
{
return carbon($this->chunk_arrival_time)->diffInSeconds($this->extraction_start_time) / 3600.0;
}
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}