Git Product home page Git Product logo

aws-sdk-php-phalcon's People

Contributors

iwai avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

aws-sdk-php-phalcon's Issues

Service 'aws' wasn't found in the dependency injection container

I have this code to register services:

services.php

$di = new FactoryDefault();
$di->set('dispatcher', function () use ($config) {
    $eventsManager = new EventsManager;
    $eventsManager->attach("application:boot", new AwsServiceProvider(array(
        'key'    => $config->s3->key,
        'secret' => $config->s3->secret,
        'region' => $config->s3->region,
    )));

    $dispatcher = new Dispatcher;
    $dispatcher->setEventsManager($eventsManager);

    return $dispatcher;
}

public/index.php

    /**
     * Load application services
     */
    require APP_PATH . 'app/config/services.php';

    $application = new Application($di);

    echo $application->handle()->getContent();

But when I call this line of code from any controller:

$s3 = $this->getDI()->get('aws')->get('s3');

This is what's printed on the error log:

Service 'aws' wasn't found in the dependency injection container

#0 \app\controllers\AccountController.php(22): Phalcon\Di->get('aws')
#1 [internal function]: AccountController->indexAction()
#2 [internal function]: Phalcon\Dispatcher->dispatch()
#3 \public\index.php(46): Phalcon\Mvc\Application->handle()
#4 {main}

Get error undefined variable

I got this error when using this repo :

Warning: Missing argument 1 for Aws\Phalcon\AwsServiceProvider::Aws\Phalcon\{closure}() in /web/vendor/iwai/aws-sdk-php-phalcon/src/Aws/Phalcon/AwsServiceProvider.php on line 50

But it fixed after I change line 50 from :

$app->getDI()->setShared('aws', function ($options) {

to :

$app->getDI()->setShared('aws', function () use ($options) {

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.