for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace UniMan\Core\Permissions;
class DefaultPermissions implements PermissionsInterface
{
public function canCreateItem($database, $type, $table)
return false;
}
public function canEditItem($database, $type, $table, $item = null)
public function canDeleteItem($database, $type, $table, $item)
public function canCreateTable($database, $type)
public function canEditTable($database, $type, $table)
public function canDeleteTable($database, $type, $table)
public function canCreateDatabase()
public function canEditDatabase($database)
public function canDeleteDatabase($database)
public function canExecuteCommands()