mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Add newlines to files.
This commit is contained in:
@@ -46,4 +46,4 @@ class BankController extends Controller
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -303,4 +303,4 @@ class FileController extends Controller
|
|||||||
|
|
||||||
return $configurator;
|
return $configurator;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -163,4 +163,4 @@ class IntroController
|
|||||||
return $steps;
|
return $steps;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -48,4 +48,4 @@ class PwndVerifier implements Verifier
|
|||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -27,4 +27,4 @@ interface Verifier
|
|||||||
*/
|
*/
|
||||||
public function validPassword(string $password): bool;
|
public function validPassword(string $password): bool;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -68,4 +68,4 @@ class BunqPrerequisites implements PrerequisitesInterface
|
|||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -44,4 +44,4 @@ interface PrerequisitesInterface
|
|||||||
* @param User $user
|
* @param User $user
|
||||||
*/
|
*/
|
||||||
public function setUser(User $user): void;
|
public function setUser(User $user): void;
|
||||||
}
|
}
|
||||||
|
@@ -156,4 +156,4 @@ return [
|
|||||||
'currencies_create' => [
|
'currencies_create' => [
|
||||||
'code' => ['element' => '#ffInput_code',],
|
'code' => ['element' => '#ffInput_code',],
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
@@ -23,4 +23,4 @@
|
|||||||
</div>
|
</div>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
forceDemoOff = true;
|
forceDemoOff = true;
|
||||||
</script>
|
</script>
|
||||||
|
@@ -94,4 +94,4 @@
|
|||||||
var searchUri = "{{ route('search.search') }}";
|
var searchUri = "{{ route('search.search') }}";
|
||||||
</script>
|
</script>
|
||||||
<script type="text/javascript" src="js/ff/search/index.js"></script>
|
<script type="text/javascript" src="js/ff/search/index.js"></script>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@@ -69,4 +69,4 @@
|
|||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
@@ -212,4 +212,4 @@ class FileControllerTest extends TestCase
|
|||||||
$response->assertRedirect(route('import.file.configure', ['new']));
|
$response->assertRedirect(route('import.file.configure', ['new']));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -140,7 +140,6 @@ class SplitControllerTest extends TestCase
|
|||||||
$repository->shouldReceive('first')->times(2)->andReturn(new TransactionJournal);
|
$repository->shouldReceive('first')->times(2)->andReturn(new TransactionJournal);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$attachmentRepos = $this->mock(AttachmentHelperInterface::class);
|
$attachmentRepos = $this->mock(AttachmentHelperInterface::class);
|
||||||
$attachmentRepos->shouldReceive('saveAttachmentsForModel');
|
$attachmentRepos->shouldReceive('saveAttachmentsForModel');
|
||||||
$attachmentRepos->shouldReceive('getMessages')->andReturn(new MessageBag);
|
$attachmentRepos->shouldReceive('getMessages')->andReturn(new MessageBag);
|
||||||
|
Reference in New Issue
Block a user