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