haxorqt
Home
Console
Upload
information
Create File
Create Folder
About
:
/
proc
/
thread-self
/
cwd
/
wp-content
/
plugins
/
admin-columns-pro
/
classes
/
Query
/
Bindings
/
Filename :
Comment.php
back
Copy
<?php namespace ACP\Query\Bindings; use ACP\Query\Bindings; class Comment extends Bindings { protected int $parent = 0; public function get_parent(): int { return $this->parent; } public function parent(int $id): self { $this->parent = $id; return $this; } }