8000 LazyLoadingMetadataFactory looks broken by angelk · Pull Request #21538 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

LazyLoadingMetadataFactory looks broken #21538

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
added test for staticClassLoader in LazyLoadingMetadatafactory
  • Loading branch information
angelk committed Feb 5, 2017
commit e23e7e4f4bc6aaea03deb60ea78d92b8d47709d0
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
<?php

/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\Validator\Tests\Fixtures;

use Symfony\Component\Validator\Mapping\ClassMetadata;

use Symfony\Component\Validator\Constraints\Length;

/**
* Description of EntityStatic
*
* @author po_taka <angel.koilov@gmail.com>
*/
class EntityStaticCar extends EntityStaticVehicle
{
public static function loadValidatorMetadata(ClassMetadata $metadata)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
<?php

/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\Validator\Tests\Fixtures;

use Symfony\Component\Validator\Mapping\ClassMetadata;

use Symfony\Component\Validator\Constraints\Length;

/**
* Description of EntityStaticParent
*
* @author po_taka <angel.koilov@gmail.com>
*/
class EntityStaticCarTurbo extends EntityStaticCar
{
public static function loadValidatorMetadata(ClassMetadata $metadata)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
<?php

/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\Validator\Tests\Fixtures;

use Symfony\Component\Validator\Mapping\ClassMetadata;

use Symfony\Component\Validator\Constraints\Length;

/**
* Description of EntityStaticVehicle
*
* @author po_taka <angel.koilov@gmail.com>
*/
class EntityStaticVehicle
{
public $wheels;
Expand Down
0