From 67ab6003bc70f67f3e7aed8d0737b1bfbfb30a3b Mon Sep 17 00:00:00 2001 From: Tac Tacelosky Date: Tue, 20 May 2025 15:31:05 -0400 Subject: [PATCH] fix use statement 0.4 changed the namespace for the Parser class. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2694811..22f3583 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ tabular data represented as HTML Table. Once installed you will be able to do the following: ```php -use Bakame\HtmlTable\Parser; +use Bakame\TabularData\HtmlTable\Parser; $table = Parser::new() ->tableHeader(['rank', 'move', 'team', 'player', 'won', 'drawn', 'lost', 'for', 'against', 'gd', 'points'])