mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-02 21:41:19 +08:00
Fix #19204: Support numbers in Inflector::camel2words
This commit is contained in:
@ -121,6 +121,9 @@ class InflectorTest extends TestCase
|
||||
$this->assertEquals('Foo Bar', Inflector::camel2words('foo BAR'));
|
||||
$this->assertEquals('Foo Bar', Inflector::camel2words('Foo Bar'));
|
||||
$this->assertEquals('Foo Bar', Inflector::camel2words('FOO BAR'));
|
||||
$this->assertEquals('Order 4 Other Phones', Inflector::camel2words('Order4OtherPhones'));
|
||||
$this->assertEquals('I Have 23 Dogs', Inflector::camel2words('IHave23Dogs'));
|
||||
$this->assertEquals('Con Chó Cười 34 Lần', Inflector::camel2words('ConChóCười34Lần'));
|
||||
}
|
||||
|
||||
public function testCamel2id()
|
||||
|
||||
Reference in New Issue
Block a user