芝麻web文件管理V1.00
编辑当前文件:/home/ezdajrnh/public_html/wp-content/plugins/google-listings-and-ads/src/Value/PositiveInteger.php
value = $value; } /** * Get the value of the object. * * @return int */ public function get() { return $this->value; } /** * Cast a value and return a new instance of the class. * * @param mixed $value Mixed value to cast to class type. * * @return PositiveInteger */ public static function cast( $value ): PositiveInteger { return new self( absint( $value ) ); } }