summaryrefslogtreecommitdiff
path: root/bin/reevotech/vendor/addwiki/mediawiki-datamodel/src/Title.php
diff options
context:
space:
mode:
authorYaco <franco@reevo.org>2021-10-19 20:42:50 -0300
committerYaco <franco@reevo.org>2021-10-19 20:42:50 -0300
commit1dc109c979d7788e8811b4eecfb8bfdf3b6ea6e2 (patch)
tree21d2a3bd6706af9eeb3e9d1def5a6ab8d8a67e93 /bin/reevotech/vendor/addwiki/mediawiki-datamodel/src/Title.php
parent8c201ace3699b4928daf41eb7b4cdcb4565c6f3b (diff)
adds reevotech scripts
Diffstat (limited to 'bin/reevotech/vendor/addwiki/mediawiki-datamodel/src/Title.php')
-rw-r--r--bin/reevotech/vendor/addwiki/mediawiki-datamodel/src/Title.php83
1 files changed, 83 insertions, 0 deletions
diff --git a/bin/reevotech/vendor/addwiki/mediawiki-datamodel/src/Title.php b/bin/reevotech/vendor/addwiki/mediawiki-datamodel/src/Title.php
new file mode 100644
index 00000000..1fb15138
--- /dev/null
+++ b/bin/reevotech/vendor/addwiki/mediawiki-datamodel/src/Title.php
@@ -0,0 +1,83 @@
+<?php
+
+namespace Mediawiki\DataModel;
+
+use InvalidArgumentException;
+use JsonSerializable;
+
+/**
+ * @author Addshore
+ */
+class Title implements JsonSerializable {
+
+ /**
+ * @var string
+ */
+ private $title;
+
+ /**
+ * @var int
+ */
+ private $ns;
+
+ /**
+ * @param string $title
+ * @param int $ns
+ *
+ * @throws InvalidArgumentException
+ */
+ public function __construct( $title, $ns = 0 ) {
+ if( !is_string( $title ) ) {
+ throw new InvalidArgumentException( '$title must be a string' );
+ }
+ if( !is_int( $ns ) ) {
+ throw new InvalidArgumentException( '$ns must be an int' );
+ }
+ $this->title = $title;
+ $this->ns = $ns;
+ }
+
+ /**
+ * @return int
+ * @since 0.1
+ */
+ public function getNs() {
+ return $this->ns;
+ }
+
+ /**
+ * @return string
+ * @since 0.6
+ */
+ public function getText() {
+ return $this->title;
+ }
+
+ /**
+ * @return string
+ * @deprecated in 0.6 use getText (makes things look cleaner)
+ */
+ public function getTitle() {
+ return $this->getText();
+ }
+
+ /**
+ * @link http://php.net/manual/en/jsonserializable.jsonserialize.php
+ */
+ public function jsonSerialize() {
+ return array(
+ 'title' => $this->title,
+ 'ns' => $this->ns,
+ );
+ }
+
+ /**
+ * @param array $json
+ *
+ * @return self
+ */
+ public static function jsonDeserialize( $json ) {
+ return new self( $json['title'], $json['ns'] );
+ }
+
+}