Files
timebank-cc-public/app/Services/CustomSocialShare.php
Ronald Huynen 2547717edb Initial commit
2026-03-23 21:37:59 +01:00

16 lines
317 B
PHP

<?php
namespace App\Services;
use Enflow\SocialShare\SocialShare;
class CustomSocialShare extends SocialShare
{
public function __call(string $service, array $parameters = []): self
{
$this->services->push(new CustomSocialShareService($this, $service, $parameters));
return $this;
}
}