mirror of
https://github.com/archtechx/laravel-tips.git
synced 2025-12-12 05:14:04 +00:00
14 lines
No EOL
525 B
Markdown
14 lines
No EOL
525 B
Markdown
---
|
|
title: 'Use strict comparison'
|
|
tweet_id: '1272826452652810240'
|
|
thread_slug: laravel-clean-code-tactics
|
|
author_username: samuelstancl
|
|
images:
|
|
- 'https://pbs.twimg.com/media/Ean722QXgAENwmW.jpg'
|
|
created_at: 2020-06-16T09:40:48+00:00
|
|
slug: use-strict-comparison
|
|
---
|
|
|
|
ALWAYS use strict comparison (=== and !==). If needed, cast things go the correct type before comparing. Better than weird == results
|
|
|
|
Also consider enabling strict types in your code. This will prevent passing variables of wrong data types to functions |