Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php declare(strict_types=1); namespace Doctrine\Tests\ORM\Mapping; use Doctrine\ORM\M..
Decoded Output download
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Mapping;
use Doctrine\ORM\Mapping\ClassMetadata;
use Doctrine\Persistence\Mapping\Driver\MappingDriver;
use Doctrine\Persistence\Mapping\Driver\StaticPHPDriver;
use Doctrine\Tests\Models\DDC889\DDC889Class;
use PHPUnit\Framework\Attributes\Group;
use const DIRECTORY_SEPARATOR;
class StaticPHPMappingDriverTest extends MappingDriverTestCase
{
protected function loadDriver(): MappingDriver
{
return new StaticPHPDriver(__DIR__ . DIRECTORY_SEPARATOR . 'php');
}
/**
* All class with static::loadMetadata are entities for php driver
*/
#[Group('DDC-889')]
public function testinvalidEntityOrMappedSuperClassShouldMentionParentClasses(): void
{
self::assertInstanceOf(ClassMetadata::class, $this->createClassMetadata(DDC889Class::class));
}
#[Group('DDC-2825')]
#[Group('881')]
public function testSchemaDefinitionViaExplicitTableSchemaAttributeProperty(): void
{
self::markTestIncomplete();
}
#[Group('DDC-2825')]
#[Group('881')]
public function testSchemaDefinitionViaSchemaDefinedInTableNameInTableAttributeProperty(): void
{
self::markTestIncomplete();
}
public function testEntityIncorrectIndexes(): void
{
self::markTestSkipped('Static PHP driver does not ensure index correctness');
}
public function testEntityIncorrectUniqueContraint(): void
{
self::markTestSkipped('Static PHP driver does not ensure index correctness');
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Mapping;
use Doctrine\ORM\Mapping\ClassMetadata;
use Doctrine\Persistence\Mapping\Driver\MappingDriver;
use Doctrine\Persistence\Mapping\Driver\StaticPHPDriver;
use Doctrine\Tests\Models\DDC889\DDC889Class;
use PHPUnit\Framework\Attributes\Group;
use const DIRECTORY_SEPARATOR;
class StaticPHPMappingDriverTest extends MappingDriverTestCase
{
protected function loadDriver(): MappingDriver
{
return new StaticPHPDriver(__DIR__ . DIRECTORY_SEPARATOR . 'php');
}
/**
* All class with static::loadMetadata are entities for php driver
*/
#[Group('DDC-889')]
public function testinvalidEntityOrMappedSuperClassShouldMentionParentClasses(): void
{
self::assertInstanceOf(ClassMetadata::class, $this->createClassMetadata(DDC889Class::class));
}
#[Group('DDC-2825')]
#[Group('881')]
public function testSchemaDefinitionViaExplicitTableSchemaAttributeProperty(): void
{
self::markTestIncomplete();
}
#[Group('DDC-2825')]
#[Group('881')]
public function testSchemaDefinitionViaSchemaDefinedInTableNameInTableAttributeProperty(): void
{
self::markTestIncomplete();
}
public function testEntityIncorrectIndexes(): void
{
self::markTestSkipped('Static PHP driver does not ensure index correctness');
}
public function testEntityIncorrectUniqueContraint(): void
{
self::markTestSkipped('Static PHP driver does not ensure index correctness');
}
}
Function Calls
None |
Stats
MD5 | 56a59a2dfef7bd4e6b92590ce644b18d |
Eval Count | 0 |
Decode Time | 82 ms |