Skip to content

Commit 3296cc5

Browse files
committed
changed namespaces
1 parent c12d513 commit 3296cc5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+244
-244
lines changed

CHANGELOG.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
#### Backwards-incompatible changes
1111

12-
* Unrecoverable parser errors throw an exception of type `Sabberworm\CSS\Parsing\SourceException` instead of `\Exception`.
12+
* Unrecoverable parser errors throw an exception of type `Mehdirma10\CSS\Parsing\SourceException` instead of `\Exception`.
1313

1414
### 8.1.0 (2016-07-19)
1515

@@ -29,7 +29,7 @@
2929

3030
#### Backwards-incompatible changes
3131

32-
* The `Sabberworm\CSS\Value\String` class has been renamed to `Sabberworm\CSS\Value\CSSString`.
32+
* The `Mehdirma10\CSS\Value\String` class has been renamed to `Mehdirma10\CSS\Value\CSSString`.
3333

3434
### 7.0.1 (2015-12-25)
3535

@@ -53,7 +53,7 @@
5353

5454
### 6.0.0 (2014-07-03)
5555

56-
* Format output using Sabberworm\CSS\OutputFormat
56+
* Format output using Mehdirma10\CSS\OutputFormat
5757
* *No backwards-incompatible changes*
5858

5959
#### Deprecations
@@ -76,7 +76,7 @@
7676

7777
#### Backwards-incompatible changes
7878

79-
* `Sabberworm\CSS\Value\Color`’s `__toString` method overrides `CSSList`’s to maybe return something other than `type(value, …)` (see above).
79+
* `Mehdirma10\CSS\Value\Color`’s `__toString` method overrides `CSSList`’s to maybe return something other than `type(value, …)` (see above).
8080

8181
### 5.0.1 (2013-03-20)
8282

@@ -150,7 +150,7 @@
150150
### 5.2.0 (2014-06-30)
151151

152152
* Support removing a selector from a declaration block using `$oBlock->removeSelector($mSelector)`
153-
* Introduce a specialized exception (Sabberworm\CSS\Parsing\OuputException) for exceptions during output rendering
153+
* Introduce a specialized exception (Mehdirma10\CSS\Parsing\OuputException) for exceptions during output rendering
154154

155155
* *No deprecations*
156156

@@ -163,13 +163,13 @@
163163
### 4.0.0 (2013-03-19)
164164

165165
* Support for more @-rules
166-
* Generic interface `Sabberworm\CSS\Property\AtRule`, implemented by all @-rule classes
166+
* Generic interface `Mehdirma10\CSS\Property\AtRule`, implemented by all @-rule classes
167167
* *No deprecations*
168168

169169
#### Backwards-incompatible changes
170170

171-
* `Sabberworm\CSS\RuleSet\AtRule` renamed to `Sabberworm\CSS\RuleSet\AtRuleSet`
172-
* `Sabberworm\CSS\CSSList\MediaQuery` renamed to `Sabberworm\CSS\RuleSet\CSSList\AtRuleBlockList` with differing semantics and API (which also works for other block-list-based @-rules like `@supports`).
171+
* `Mehdirma10\CSS\RuleSet\AtRule` renamed to `Mehdirma10\CSS\RuleSet\AtRuleSet`
172+
* `Mehdirma10\CSS\CSSList\MediaQuery` renamed to `Mehdirma10\CSS\RuleSet\CSSList\AtRuleBlockList` with differing semantics and API (which also works for other block-list-based @-rules like `@supports`).
173173

174174
## 3.0
175175

@@ -180,10 +180,10 @@
180180

181181
#### Backwards-incompatible changes
182182

183-
* All properties (like whether or not to use `mb_`-functions, which default charset to use and – new – whether or not to be forgiving when parsing) are now encapsulated in an instance of `Sabberworm\CSS\Settings` which can be passed as the second argument to `Sabberworm\CSS\Parser->__construct()`.
184-
* Specifying a charset as the second argument to `Sabberworm\CSS\Parser->__construct()` is no longer supported. Use `Sabberworm\CSS\Settings::create()->withDefaultCharset('some-charset')` instead.
185-
* Setting `Sabberworm\CSS\Parser->bUseMbFunctions` has no effect. Use `Sabberworm\CSS\Settings::create()->withMultibyteSupport(true/false)` instead.
186-
* `Sabberworm\CSS\Parser->parse()` may throw a `Sabberworm\CSS\Parsing\UnexpectedTokenException` when in strict parsing mode.
183+
* All properties (like whether or not to use `mb_`-functions, which default charset to use and – new – whether or not to be forgiving when parsing) are now encapsulated in an instance of `Mehdirma10\CSS\Settings` which can be passed as the second argument to `Mehdirma10\CSS\Parser->__construct()`.
184+
* Specifying a charset as the second argument to `Mehdirma10\CSS\Parser->__construct()` is no longer supported. Use `Mehdirma10\CSS\Settings::create()->withDefaultCharset('some-charset')` instead.
185+
* Setting `Mehdirma10\CSS\Parser->bUseMbFunctions` has no effect. Use `Mehdirma10\CSS\Settings::create()->withMultibyteSupport(true/false)` instead.
186+
* `Mehdirma10\CSS\Parser->parse()` may throw a `Mehdirma10\CSS\Parsing\UnexpectedTokenException` when in strict parsing mode.
187187

188188
## 2.0
189189

@@ -193,8 +193,8 @@
193193

194194
#### Backwards-incompatible changes
195195

196-
* `Sabberworm\CSS\RuleSet->getRules()` returns an index-based array instead of an associative array. Use `Sabberworm\CSS\RuleSet->getRulesAssoc()` (which eliminates duplicate rules and lets the later rule of the same name win).
197-
* `Sabberworm\CSS\RuleSet->removeRule()` works as it did before except when passed an instance of `Sabberworm\CSS\Rule\Rule`, in which case it would only remove the exact rule given instead of all the rules of the same type. To get the old behaviour, use `Sabberworm\CSS\RuleSet->removeRule($oRule->getRule()`;
196+
* `Mehdirma10\CSS\RuleSet->getRules()` returns an index-based array instead of an associative array. Use `Mehdirma10\CSS\RuleSet->getRulesAssoc()` (which eliminates duplicate rules and lets the later rule of the same name win).
197+
* `Mehdirma10\CSS\RuleSet->removeRule()` works as it did before except when passed an instance of `Mehdirma10\CSS\Rule\Rule`, in which case it would only remove the exact rule given instead of all the rules of the same type. To get the old behaviour, use `Mehdirma10\CSS\RuleSet->removeRule($oRule->getRule()`;
198198

199199
## 1.0
200200

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ DOXYFILE_ENCODING = UTF-8
3232
# title of most generated pages and in a few other places.
3333
# The default value is: My Project.
3434

35-
PROJECT_NAME = "Sabberworm/PHP-CSS-Parser"
35+
PROJECT_NAME = "Mehdirma10/PHP-CSS-Parser"
3636

3737
# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
3838
# could be handy for archiving the generated documentation or if some version

0 commit comments

Comments
 (0)