| 1 |
<?php |
| 2 |
/** |
| 3 |
* WPSEO plugin file. |
| 4 |
* |
| 5 |
* @package WPSEO\Frontend\Schema |
| 6 |
*/ |
| 7 |
|
| 8 |
use Yoast\WP\SEO\Generators\Schema\Organization; |
| 9 |
|
| 10 |
/** |
| 11 |
* Returns schema Organization data. |
| 12 |
* |
| 13 |
* @since 10.2 |
| 14 |
* @deprecated 14.0 |
| 15 |
*/ |
| 16 |
class WPSEO_Schema_Organization extends WPSEO_Deprecated_Graph_Piece { |
| 17 |
|
| 18 |
/** |
| 19 |
* WPSEO_Schema_Organization constructor. |
| 20 |
* |
| 21 |
* @deprecated 14.0 |
| 22 |
* @codeCoverageIgnore |
| 23 |
* |
| 24 |
* @param null $context The context. No longer used but present for BC. |
| 25 |
*/ |
| 26 |
public function __construct( $context = null ) { |
| 27 |
parent::__construct( Organization::class ); |
| 28 |
} |
| 29 |
} |
| 30 |
|