diff --git a/src/Reflection/CodeFile.php b/src/Reflection/CodeFile.php
index f4e20e8..05abc84 100644
--- a/src/Reflection/CodeFile.php
+++ b/src/Reflection/CodeFile.php
@@ -1,27 +1,27 @@
 <?php
 
 namespace Keruald\OmniTools\Reflection;
 
 use Keruald\OmniTools\IO\File;
 
 class CodeFile extends File {
 
     ///
     /// Include methods
     ///
 
     public function tryInclude () : bool {
         if (!$this->canBeIncluded()) {
             return false;
         }
 
         include($this->getFilename());
 
         return true;
     }
 
     public function canBeIncluded () : bool {
-        return $this->exists() &&$this->isReadable();
+        return $this->exists() && $this->isReadable();
     }
 
 }