Release of v3.2.3-beta1
Fix abstract schema class function check default index warring.
This commit is contained in:
@ -455,8 +455,8 @@ abstract class Schema implements SchemaInterface
|
||||
return true;
|
||||
}
|
||||
|
||||
if (is_string($expected['default']) && strtoupper($expected['default']) === 'EMPTY' &&
|
||||
is_string($current->Default) && strpos($current->Default, 'EMPTY') !== false)
|
||||
if (isset($expected['default']) && is_string($expected['default']) && strtoupper($expected['default']) === 'EMPTY' &&
|
||||
isset($current->Default) && is_string($current->Default) && strpos($current->Default, 'EMPTY') !== false)
|
||||
{
|
||||
return true; // little fix
|
||||
}
|
||||
|
@ -19,7 +19,7 @@ use VDM\Joomla\Abstraction\PHPConfigurationChecker as ExtendingPHPConfigurationC
|
||||
/**
|
||||
* Componentbuilder PHP Configuration Checker
|
||||
*
|
||||
* @since 3.2.2
|
||||
* @since 5.02
|
||||
*/
|
||||
final class PHPConfigurationChecker extends ExtendingPHPConfigurationChecker implements PHPConfigurationCheckerInterface
|
||||
{
|
||||
|
Reference in New Issue
Block a user