for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Phpsa\Datastore\Ams;
use Phpsa\Datastore\Asset;
class DatePickerAsset extends Asset {
public $type = DatePickerAsset::class;
public $namespace = 'property';
public static function html($data) {
return '<span>' . $data['value'] . '</span>';
}