for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WeDevBr\Mati\Inputs;
/**
* Wrapper for identity input
*
* @author Gabriel Mineiro <[email protected]>
*/
class SelfiePhoto extends BaseInput
{
use HasType;
public function toArray()
return [
'inputType' => 'selfie-photo',
'data' => [
'type' => $this->type,
'filename' => $this->getFileName()
]
];
}