for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Install GitHub App
<?php
namespace Backpack\CRUD\app\Library\CrudPanel\Uploads\Traits;
trait HasName
{
/**
* The name of the uploader AKA CrudField/Column name.
*
* @var string
*/
public string $name;
* Return the name of the uploader, field or column
* @return string
public function getName()
return $this->name;
}