1
0
mirror of https://github.com/erusev/parsedown.git synced 2025-09-02 11:22:37 +02:00

Merge pull request #868 from Ayesh/php84/nullability

[PHP 8.4] Fixes for implicit nullability deprecation
This commit is contained in:
Emanuil Rusev
2024-07-09 09:15:45 +03:00
committed by GitHub

View File

@@ -571,7 +571,7 @@ class Parsedown
#
# List
protected function blockList($Line, array $CurrentBlock = null)
protected function blockList($Line, ?array $CurrentBlock = null)
{
list($name, $pattern) = $Line['text'][0] <= '-' ? array('ul', '[*+-]') : array('ol', '[0-9]{1,9}+[.\)]');
@@ -808,7 +808,7 @@ class Parsedown
#
# Setext
protected function blockSetextHeader($Line, array $Block = null)
protected function blockSetextHeader($Line, ?array $Block = null)
{
if ( ! isset($Block) or $Block['type'] !== 'Paragraph' or isset($Block['interrupted']))
{
@@ -894,7 +894,7 @@ class Parsedown
#
# Table
protected function blockTable($Line, array $Block = null)
protected function blockTable($Line, ?array $Block = null)
{
if ( ! isset($Block) or $Block['type'] !== 'Paragraph' or isset($Block['interrupted']))
{