[MODULES] Fix small error in modules manager

This commit is contained in:
Hugo Sales 2020-03-30 14:43:45 +00:00 committed by Hugo Sales
parent 6193062590
commit e022a5e65e
Signed by: someonewithpc
GPG Key ID: 7D0C7EAFC9D835A0
2 changed files with 3 additions and 2 deletions

View File

@ -54,7 +54,7 @@ abstract class ModulesManager
// Register event handlers
$methods = get_class_methods($class);
$events = F\select($methods, Common::swapArgs('startsWith', 'on'));
$events = F\select($methods, F\partial_right('App\Util\Common::startsWith', 'on'));
F\map($events,
function (string $m) use ($class) {
Event::addHandler(substr($m, 2), [$class, $m]);

View File

@ -74,7 +74,8 @@ class SchemaDefDriver extends StaticPHPDriver
$metadata->setPrimaryTable(['name' => $schema['name'],
'indexes' => self::kv_to_name_col($schema['indexes']),
'uniqueConstraints' => self::kv_to_name_col($schema['unique keys']),
'options' => ['comment' => $schema['description']], ]);
'options' => ['comment' => $schema['description'] ?? ''],
]);
foreach ($schema['fields'] as $name => $opts) {
// Convert old to new types