@ -41,9 +41,9 @@ final class PutQueryBuilder
/**
* @throws QueryBuilderInvalidInputException
*/
public function S chema(string $uri): PutQueryBuilder
public function s chema(string $uri): PutQueryBuilder
{
$this->PutWhat = self::R egexValidate(
$this->PutWhat = self::r egexValidate(
target: "SCHEMA \"$uri\"",
pattern: "/SCHEMA \".+\"/"
);
@ -53,9 +53,9 @@ final class PutQueryBuilder
/**
* @throws QueryBuilderInvalidInputException
*/
public function URI (string $uri): PutQueryBuilder
public function uri (string $uri): PutQueryBuilder
{
$this->PutWhat = self::R egexValidate(
$this->PutWhat = self::r egexValidate(
target: "URI \"$uri\"",
pattern: "/URI \".+\"/"
);
@ -65,9 +65,9 @@ final class PutQueryBuilder
/**
* @throws QueryBuilderInvalidInputException
*/
public function D ataURI(string $mimeType, string $data): PutQueryBuilder
public function d ataURI(string $mimeType, string $data): PutQueryBuilder
{
$this->PutWhat = self::R egexValidate(
$this->PutWhat = self::r egexValidate(
target: "URI \"data:$mimeType;$data\"",
pattern: "/URI \"data:[a-zA-Z0-9]/[a-zA-Z0-9];.+\"/"
);
@ -79,10 +79,10 @@ final class PutQueryBuilder
* @throws QueryBuilderInvalidInputException
* @throws QueryBuilderConflictingFieldAlreadyExistsException
*/
public function A t(string $node, string $uwu): PutQueryBuilder
public function a t(string $node, string $uwu): PutQueryBuilder
{
self::E nsureNotSet($this->PutInto);
$this->PutAt = self::R egexValidate(
self::e nsureNotSet($this->PutInto);
$this->PutAt = self::r egexValidate(
target: 'AT {' . $node . '}/' . $uwu,
pattern: "/AT {[a-zA-Z0-9\-]+}\/[a-zA-Z0-9]+/"
);
@ -94,10 +94,10 @@ final class PutQueryBuilder
* @throws QueryBuilderInvalidInputException
* @throws QueryBuilderConflictingFieldAlreadyExistsException
*/
public function I nto(string $relativePath, string $propertyName): PutQueryBuilder
public function i nto(string $relativePath, string $propertyName): PutQueryBuilder
{
self::E nsureNotSet($this->PutAt);
$this->PutInto = self::R egexValidate(
self::e nsureNotSet($this->PutAt);
$this->PutInto = self::r egexValidate(
target: "INTO \"$relativePath\" AS \"$propertyName\"",
pattern: "/INTO \"[a-zA-Z0-9\-]+\" AS \"[a-zA-Z0-9]+\"/"
);
@ -105,7 +105,7 @@ final class PutQueryBuilder
}
public function S afe(): PutQueryBuilder
public function s afe(): PutQueryBuilder
{
$this->Safe = true;
return $this;