torrentpier-lts/library/Zend/Form/Annotation/Object.php

43 lines
1.2 KiB
PHP
Raw Normal View History

<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
2023-04-01 09:03:34 +03:00
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
namespace Zend\Form\Annotation;
/**
2023-04-01 09:03:34 +03:00
* Stub class for backwards compatibility.
*
2023-04-01 09:03:34 +03:00
* Since PHP 7 adds "object" as a reserved keyword, we can no longer have a class
* named that and retain PHP 7 compatibility. The original class has been
* renamed to "Instance", and this class is now an extension of it. It raises an
* E_USER_DEPRECATED to warn users to migrate.
*
2023-04-01 09:03:34 +03:00
* @deprecated
* @Annotation
*/
2023-04-01 09:03:34 +03:00
class Object extends Instance
{
/**
2023-04-01 09:03:34 +03:00
* {@inheritdoc}
*/
2023-04-01 09:03:34 +03:00
public function __construct(array $data)
{
2023-04-01 09:03:34 +03:00
trigger_error(
sprintf(
'The class %s has been deprecated; please use %s\\Instance,'
. ' and the annotation @Instance or @Annotation\Instance',
__CLASS__,
__NAMESPACE__
),
E_USER_DEPRECATED
);
parent::__construct($data);
}
}