for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by Maciej Paprocki for Bureau-VA.
* Date: 17/02/2016
* Project Name: MaciekPaprocki\WordpressGuzzle
* Time: 12:17
*/
namespace BureauVa\WordpressGuzzle\Repository;
* Class Post
* @package MaciekPaprocki\WordpressGuzzle
class Post extends RepositoryAbstract
{
* Post Repo constructor.
public function __construct()
}
public function findByIds($id){
if(is_numeric($id)){
return $this->findOneById($id);
}else{
//TODO: implement actuall body of the function
return null;
public function findOneById($id){
$id
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.