/* Decoded by unphp.net */ new JsonExpression($actual), ]); $createdStorage->save(); $foundStorage = ArrayAndJsonType::find()->limit(1)->one(); $this->assertNotNull($foundStorage); $foundStorage->json_col = $modified; $this->assertSame(['json_col' => $modified], $foundStorage->getDirtyAttributes()); } } /** * {@inheritdoc} * @property array id * @property array json_col */ class ArrayAndJsonType extends ActiveRecord { public static function tableName() { return '{{%array_and_json_types}}'; } } ?>