Browse Source

Correctly declare all literal properties

Nils Adermann 13 years ago
parent
commit
5d5d6462e3
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/Composer/DependencyResolver/Literal.php

+ 2 - 0
src/Composer/DependencyResolver/Literal.php

@@ -19,7 +19,9 @@ use Composer\Package\PackageInterface;
  */
 class Literal
 {
+    protected $package;
     protected $wanted;
+    protected $id;
 
     public function __construct(PackageInterface $package, $wanted)
     {