for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace OhDear\PhpSdk\Actions;
use OhDear\PhpSdk\Resources\User;
trait ManagesUsers
{
public function me(): User
$userAttributes = $this->get('me');
get()
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
ignore-call
/** @scrutinizer ignore-call */
return new User($userAttributes, $this);
}