Skip to content
This repository was archived by the owner on Mar 5, 2023. It is now read-only.

Commit 0bd2409

Browse files
committed
Release
1 parent 3e17f51 commit 0bd2409

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "8fold/php-markup",
33
"description": "8fold Markup seeks to make writing semi-structured data easier while allowing for more dynamism.",
4-
"version": "0.0.1",
4+
"version": "0.1.0",
55
"type": "library",
66
"license": "MIT",
77
"authors": [

src/Html/Elements/HtmlElement.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ protected function compiledElement(): string
3838
protected function compiledAttributes(): string
3939
{
4040
// TODO: Test beyond ordered
41-
$ordered = [];
42-
$events = [];
43-
$aria = [];
44-
$data = [];
45-
$other = [];
46-
$boolean = [];
41+
$ordered = [];
42+
$events = [];
43+
$aria = [];
44+
$data = [];
45+
$other = [];
46+
$boolean = [];
4747
$leftovers = [];
4848
Shoop::array($this->attributes)->each(function($attribute) use
4949
(&$ordered, &$events, &$aria, &$data, &$other, &$boolean, &$leftovers) {

0 commit comments

Comments
 (0)