Server : LiteSpeed System : Linux premium181.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64 User : ventnesy ( 2514) PHP Version : 8.3.30 Disable Function : NONE Directory : /home/ventnesy/public_html/wp-content/plugins/wordpress-seo/src/values/robots/ |
<?php
namespace Yoast\WP\SEO\Values\Robots;
/**
* Class Directive
*/
class Directive {
/**
* Paths list.
*
* @var array All paths affected by this directive.
*/
private $paths;
/**
* Sets up the path array
*/
public function __construct() {
$this->paths = [];
}
/**
* Adds a path to the directive path list.
*
* @param string $path A path to add in the path list.
*
* @return void
*/
public function add_path( $path ) {
if ( ! \in_array( $path, $this->paths, true ) ) {
$this->paths[] = $path;
}
}
/**
* Returns all paths.
*
* @return array
*/
public function get_paths() {
return $this->paths;
}
}