Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

Commit

Permalink
Added missing ; in sample code
Browse files Browse the repository at this point in the history
  • Loading branch information
renedekat authored Jan 16, 2017
1 parent 093c715 commit 9905ab4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ $ composer require renedekat/blmreader
## Usage

``` php
use ReneDeKat\Blm\Drivers\Simple
use ReneDeKat\Blm\Drivers\Csvq
use ReneDeKat\Blm\Drivers\Simple;
use ReneDeKat\Blm\Drivers\Csvq;

// Create simple (array) output
$simple = Simple::create()->loadFromFile("path/to/blmFile")
$simple = Simple::create()->loadFromFile("path/to/blmFile");
// OR
$simple = Simple::create()->loadFromString($blmContents)
$simple = Simple::create()->loadFromString($blmContents);

$rawContents = $simple->getRawContents();
$output = $simple->getOutput();
Expand Down

0 comments on commit 9905ab4

Please sign in to comment.