Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ For an overview of the software quality over time and the evolving metrics, chec
| sql.php | ❌ | yyyy-mm-dd |
| sqledit.php | ✅ | 2025-08-26 |
| tables.php | ❌ | yyyy-mm-dd |
| tablespaces.php | | yyyy-mm-dd |
| tablespaces.php | | 2026-03-18 |
| tblproperties.php | ❌ | yyyy-mm-dd |
| triggers.php | ❌ | yyyy-mm-dd |
| types.php | ❌ | yyyy-mm-dd |
Expand Down
2 changes: 1 addition & 1 deletion Tests/Architecture/DDD/DomainTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function testDomainIndependence(): Rule
{
return PHPat::rule()
->classes(Selector::inNamespace('PhpPgAdmin\DDD'))
->canOnlyDependOn()
->canOnly()->dependOn()
->classes(Selector::inNamespace('PhpPgAdmin\DDD'))
->because('Domain layer should only depend on itself and PHP standard classes.');
}
Expand Down
2 changes: 1 addition & 1 deletion Tests/Architecture/DDD/ValueObjectsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public function testValueObjectsAreReadonly(): Rule
Selector::Not(Selector::isEnum()),
)
)
->shouldBeReadonly()
->should()->beReadonly()
->because('ValueObjects are immutable by definition.');
}
}
10 changes: 10 additions & 0 deletions alter_tablespace.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

declare(strict_types=1);

use PhpPgAdmin\Website\AlterTablespace;

require_once __DIR__ . DIRECTORY_SEPARATOR . 'autoload.php';

$website = new AlterTablespace();
echo $website->buildHtmlString();
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"@dev:lint:phpcs"
],
"dev:lint:php": "parallel-lint --exclude vendor .",
"dev:lint:phpcs": "phpcs -d memory_limit=256M src/ autoload.php all_db.php all_db_export.php alter_db.php alter_role.php browser.php create_db.php create_role.php dbexport.php drop_db.php drop_role.php history.php history_clear.php history_delete.php history_download.php index.php intro.php login.php logout.php roles.php server-logout.php servers.php servers-tree.php sqledit.php",
"dev:lint:phpcs": "phpcs -d memory_limit=256M src/ autoload.php all_db.php all_db_export.php alter_db.php alter_role.php alter_tablespace.php browser.php create_db.php create_role.php create_tablespace.php dbexport.php drop_db.php drop_role.php drop_tablespace.php history.php history_clear.php history_delete.php history_download.php index.php intro.php login.php logout.php roles.php server-logout.php servers.php servers-tree.php sqledit.php tablespaces.php",
"dev:test": [
"@dev:test:acceptance"
],
Expand Down
81 changes: 41 additions & 40 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions create_tablespace.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

declare(strict_types=1);

use PhpPgAdmin\Website\CreateTablespace;

require_once __DIR__ . DIRECTORY_SEPARATOR . 'autoload.php';

$website = new CreateTablespace();
echo $website->buildHtmlString();
10 changes: 10 additions & 0 deletions drop_tablespace.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

declare(strict_types=1);

use PhpPgAdmin\Website\DropTablespace;

require_once __DIR__ . DIRECTORY_SEPARATOR . 'autoload.php';

$website = new DropTablespace();
echo $website->buildHtmlString();
Binary file modified locale/af_ZA/LC_MESSAGES/messages.mo
Binary file not shown.
20 changes: 10 additions & 10 deletions locale/af_ZA/LC_MESSAGES/messages.po
Original file line number Diff line number Diff line change
Expand Up @@ -1640,13 +1640,13 @@ msgstr "Tabelruimtes"
msgid "strshowalltablespaces"
msgstr "Wys alle tabelruimtes"

msgid "strnotablespaces"
msgid "No tablespaces found."
msgstr "Geen tabelruimtes gevind."

msgid "strcreatetablespace"
msgid "Create tablespace"
msgstr "Skep tabelruimte"

msgid "strlocation"
msgid "Location"
msgstr "Plek"

msgid "strtablespaceneedsname"
Expand All @@ -1655,25 +1655,25 @@ msgstr "Jy moet 'n naam gee vir jou tabelruimte."
msgid "strtablespaceneedsloc"
msgstr "Jy moet 'n gids gee om jou tabelruimte in te skep."

msgid "strtablespacecreated"
msgid "Tablespace created."
msgstr "Tabelruimte geskep."

msgid "strtablespacecreatedbad"
msgid "Tablespace creation failed."
msgstr "Skep van tabelruimte het misluk."

msgid "strconfdroptablespace"
msgid "Are you sure you want to drop the tablespace \"%s\"?"
msgstr "Is jy seker jy wil die tabelruimte \"%s\" uitvee?"

msgid "strtablespacedropped"
msgid "Tablespace dropped."
msgstr "Tabelruimte is uitgevee."

msgid "strtablespacedroppedbad"
msgid "Tablespace drop failed."
msgstr "Uitvee van tabelruimte het misluk."

msgid "strtablespacealtered"
msgid "Tablespace altered."
msgstr "Tabelruimte gewysig."

msgid "strtablespacealteredbad"
msgid "Tablespace alteration failed."
msgstr "Wysiging van tabelruimte het misluk."

# Miscellaneous
Expand Down
Binary file modified locale/ca_ES/LC_MESSAGES/messages.mo
Binary file not shown.
Loading
Loading