mirror of
https://github.com/erusev/parsedown.git
synced 2025-04-21 22:11:52 +02:00
Merge pull request #871 from xabbuh/pr-868-1.7
[PHP 8.4] Fixes for implicit nullability deprecation
This commit is contained in:
commit
f7285e7b2c
@ -712,7 +712,7 @@ class Parsedown
|
||||
#
|
||||
# Setext
|
||||
|
||||
protected function blockSetextHeader($Line, array $Block = null)
|
||||
protected function blockSetextHeader($Line, ?array $Block = null)
|
||||
{
|
||||
if ( ! isset($Block) or isset($Block['type']) or isset($Block['interrupted']))
|
||||
{
|
||||
@ -850,7 +850,7 @@ class Parsedown
|
||||
#
|
||||
# Table
|
||||
|
||||
protected function blockTable($Line, array $Block = null)
|
||||
protected function blockTable($Line, ?array $Block = null)
|
||||
{
|
||||
if ( ! isset($Block) or isset($Block['type']) or isset($Block['interrupted']))
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user