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 HasCrudObjectType
{
/**
* The type of the object upload is handling: field or column.
*
* @var string
*/
public string $crudObjectType;
* Return the crud object type, field or column
* @return string
public function getCrudObjectType()
return $this->crudObjectType;
}