17 lines
339 B
PHP
17 lines
339 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
namespace App\Services;
|
|
|
|
use App\Entity\Clients;
|
|
use App\Entity\Reports;
|
|
use App\Helper\MonthHelper;
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
|
use Twig\Environment;
|
|
|
|
class MailtoServices extends AbstractController
|
|
{
|
|
public function takeUrl(Reports $reports): string
|
|
{
|
|
|
|
}
|
|
} |