for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Serkin Alexander <[email protected]>
* @license https://github.com/serkin/ymlparser/LICENSE MIT
*/
namespace YMLParser\Node;
class Offer extends \ArrayObject {
* Ges price.
*
* @param string $currency
* @return integer
public function getPrice($currency = 'RUR') {
$currency
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
return 0;
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.