23 lines
339 B
PHP
23 lines
339 B
PHP
<?php
|
|
namespace AIOSEO\Plugin\Common\Schema\Graphs\WebPage;
|
|
|
|
// Exit if accessed directly.
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* CollectionPage graph class.
|
|
*
|
|
* @since 4.0.0
|
|
*/
|
|
class CollectionPage extends WebPage {
|
|
/**
|
|
* The graph type.
|
|
*
|
|
* @since 4.0.0
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $type = 'CollectionPage';
|
|
} |