diff --git a/LICENSE b/LICENSE index cea2704..674736d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2013 Matt Karl +Copyright (c) 2014 Matt Karl Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/build.properties b/build.properties index 65bd227..6de22dd 100644 --- a/build.properties +++ b/build.properties @@ -10,4 +10,4 @@ docs.helpers=${docs.themedir}/path.js git=git git.docs=gh-pages git.master=master -version=1.0.1 +version=1.1.1 diff --git a/composer.json b/composer.json index e38e1c3..605df65 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "canteen/html5", "description" : "Create dynamic, valid HTML5 markup with a simple an intuitive PHP API", - "version" : "1.1.0", + "version" : "1.1.1", "type": "library", "keywords": ["html5", "markup", "document", "html", "tags"], "license": "MIT", diff --git a/src/Fragment.php b/src/Fragment.php index 4953244..dd9f0a7 100644 --- a/src/Fragment.php +++ b/src/Fragment.php @@ -9,10 +9,10 @@ namespace Canteen\HTML5 * Represents a set of HTML tags without a wrapper. * Do not initiate this class directly, use the `html()` function: * - * $div = html('container'); + * $div = html('fragment'); * - * @class UntaggedContainer - * @extends Node + * @class Fragment + * @extends NodeContainer * @constructor * @param {Node|Array} [children=null] The collection of children or single child */ @@ -35,7 +35,6 @@ namespace Canteen\HTML5 { $buffer .= $child->__toString(); } - return $buffer; } }