for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace RexlManu\LaravelTickets\Helper;
/**
* Class ReferenceHelper
*
* Provides helper functions for the ticket reference
* @package RexlManu\LaravelTickets\Helper
*/
class ReferenceHelper
{
public static function modelToReference($model) : string
$type = get_class($model);
return "$type,$model->id";
}