for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spinen\QuickBooks;
trait HasQuickBooksToken
{
/**
* Have a quickBooksToken.
*
* @return \Illuminate\Database\Eloquent\Relations\HasOne
*/
public function quickBooksToken()
return $this->hasOne(Token::class);
hasOne()
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
ignore-call
return $this->/** @scrutinizer ignore-call */ hasOne(Token::class);
}