for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
if (! function_exists('bearychat')) {
/**
* Get the BearyChat Client instance.
*
* @param string $name
* @return \ElfSundae\BearyChat\Client
*/
function bearychat($name = null)
{
return app('bearychat')->client($name);
app
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
ignore-call
return /** @scrutinizer ignore-call */ app('bearychat')->client($name);
}