• File: RootDeprecation.php
  • Full Path: /home/masbinta/public_html/core/vendor/doctrine/deprecations/test_fixtures/src/RootDeprecation.php
  • File size: 373 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace DeprecationTests;

use Doctrine\Deprecations\Deprecation;

class RootDeprecation
{
    public static function run()
    {
        Deprecation::triggerIfCalledFromOutside(
            'doctrine/orm',
            'https://github.com/doctrine/deprecations/4444',
            'this is deprecated %s %d',
            'foo',
            1234
        );

    }
}