Migrates to Pint

This commit is contained in:
Nuno Maduro
2022-09-16 10:45:53 +01:00
parent 579b975318
commit e9564febaf
94 changed files with 413 additions and 471 deletions

View File

@ -131,7 +131,7 @@ class HasMethods
public function attributes()
{
return [
'name' => $this->name(),
'name' => $this->name(),
'quantity' => $this->quantity(),
];
}
@ -141,11 +141,11 @@ class HasMethods
return [
[
'title' => 'Foo',
'cost' => 20,
'cost' => 20,
],
[
'title' => 'Bar',
'cost' => 30,
'cost' => 30,
],
];
}

View File

@ -72,11 +72,11 @@ class HasMethodsAndProperties
public $posts = [
[
'is_published' => true,
'title' => 'Foo',
'title' => 'Foo',
],
[
'is_published' => true,
'title' => 'Bar',
'title' => 'Bar',
],
];
@ -85,11 +85,11 @@ class HasMethodsAndProperties
return [
[
'title' => 'Foo',
'cost' => 20,
'cost' => 20,
],
[
'title' => 'Bar',
'cost' => 30,
'cost' => 30,
],
];
}

View File

@ -86,11 +86,11 @@ class HasProperties
public $posts = [
[
'is_published' => true,
'title' => 'Foo',
'title' => 'Foo',
],
[
'is_published' => true,
'title' => 'Bar',
'title' => 'Bar',
],
];