Skip to content

Commit 7c5cb64

Browse files
author
Martin Brecht-Precht
committed
Made the title property optional
1 parent e069c24 commit 7c5cb64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/HandlerInterface/HandlerInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,14 +192,14 @@ public function onLineBreakContent($hard);
192192
* @param string $title
193193
* @return void
194194
*/
195-
public function onLinkContentBegin($uri, $title);
195+
public function onLinkContentBegin($uri, $title = null);
196196

197197
/**
198198
* @param string $uri
199199
* @param string $title
200200
* @return void
201201
*/
202-
public function onLinkContentEnd($uri, $title);
202+
public function onLinkContentEnd($uri, $title = null);
203203

204204
/**
205205
* @param string $text

0 commit comments

Comments
 (0)