Skip to content

Commit

Permalink
set remembering of container to False
Browse files Browse the repository at this point in the history
  • Loading branch information
josephmancuso committed Jun 6, 2019
1 parent 3cdc75f commit c3a03da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion masonite/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class App:
Performs bindings and resolving of objects to and from the container.
"""

def __init__(self, strict=False, override=True, resolve_parameters=False, remember=True):
def __init__(self, strict=False, override=True, resolve_parameters=False, remember=False):
"""App class constructor."""
self.providers = {}
self.strict = strict
Expand Down
2 changes: 1 addition & 1 deletion masonite/snippets/scaffold/test.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Example Testcase."""
"""{{ class }} Testcase."""

from masonite.testing import TestCase

Expand Down

0 comments on commit c3a03da

Please sign in to comment.