Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Split up guidelines into PHP & Laravel #318

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/Filament/Resources/Customers/LicenseResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public static function table(Table $table): Table
ResourceLinkColumn::make(
'assignment.user.email',
function (License $record) {
if(! $record->assignment) {
if (! $record->assignment) {
return null;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public static function make()
return ResourceLinkColumn::make(
'assignment.purchasable.title',
function (License $record) {
if(! $record->assignment) {
if (! $record->assignment) {
return null;
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Emergencies
description: Tips to stay cool
weight: 6
weight: 7
---

Things in production are not always working as they should be. In general, we don't care who has made a mistake that resulted in an emergency or incidents. The entire team is responsible for letting something slip into production. We see any emergency as an opportunity to learn something and to improve how we handle things.
Expand Down
2 changes: 1 addition & 1 deletion resources/views/front/pages/guidelines/pages/javascript.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: JavaScript
description: Get scripty!
weight: 2
weight: 3
---

[Prettier](https://prettier.io) determines our code style. While Prettier's output isn't always the prettiest, it's consistent and removes all (meaningless) discussion about code style.
Expand Down
Loading