Initial commit: CloudOps infrastructure platform

This commit is contained in:
root
2026-04-09 19:58:57 +02:00
commit 1166a52f26
7762 changed files with 839452 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
declare(strict_types=1);
namespace Mautic\LeadBundle\Tests\Fixtures\Model;
use Mautic\CoreBundle\Translation\Translator;
class ImportModel extends \Mautic\LeadBundle\Model\ImportModel
{
public function setTranslator(Translator $translator): void
{
$this->translator = $translator;
}
}

View File

@@ -0,0 +1,15 @@
<?php
declare(strict_types=1);
namespace Mautic\LeadBundle\Tests\Fixtures\Model;
use Mautic\CoreBundle\Helper\UserHelper;
class LeadModelStub extends \Mautic\LeadBundle\Model\LeadModel
{
public function setUserHelper(UserHelper $userHelper): void
{
$this->userHelper = $userHelper;
}
}

View File

@@ -0,0 +1,3 @@
email,firstname,lastname,company,custom_boolean_field
john@doe.email,John,doe,Company B,No
ferda@mravenec.email,Ferda,Mravenec,Company B,Yes
1 email firstname lastname company custom_boolean_field
2 john@doe.email John doe Company B No
3 ferda@mravenec.email Ferda Mravenec Company B Yes

View File

@@ -0,0 +1,3 @@
email,firstname,lastname
john@doe.email,John,doe
ferda@mravenec.email,Ferda,Mravenec
1 email firstname lastname
2 john@doe.email John doe
3 ferda@mravenec.email Ferda Mravenec

View File

@@ -0,0 +1,4 @@
email,firstname,company
new@email.tld,New,Company One
existing-other@email.tld,Existing-other-after,Company One
existing-owned@email.tld,Existing-owned-after,Company One
1 email firstname company
2 new@email.tld New Company One
3 existing-other@email.tld Existing-other-after Company One
4 existing-owned@email.tld Existing-owned-after Company One