Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d531a47

Browse files
RICKRICK
RICK
authored and
RICK
committed
add vendor
1 parent c61969a commit d531a47

File tree

380 files changed

+39265
-63
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

380 files changed

+39265
-63
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
vendor/*

.idea/workspace.xml

Lines changed: 87 additions & 57 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

functions/route.func.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,15 @@ function handleUpload(Request $request,Response $response,$args){
7373
$input = $request->getUploadedFiles();
7474
foreach ($input['docs[]'] as $doc) {
7575
echo "<pre>";
76-
echo $doc->getClientFilename();
76+
var_dump($doc->getClientFilename()) ;
7777
echo "</br>";
78-
echo $doc->getClientMediaType();
78+
//echo $doc->getClientMediaType();
7979
echo "</br>";
80-
echo "Size of File is :".$doc->getSize()." bytes";
80+
// echo "Size of File is :".$doc->getSize()." bytes";
8181
echo "</pre>";
82-
return $doc->getClientFilename();
82+
return json_encode($doc->getClientFilename()) ;
8383
}
84-
return json_encode($input);
84+
// return json_encode($input);
8585

8686

8787
}

vendor/autoload.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
3+
// autoload.php @generated by Composer
4+
5+
require_once __DIR__ . '/composer/autoload_real.php';
6+
7+
return ComposerAutoloaderInitedbd2d6b710087a836e7f0677101c2dc::getLoader();

0 commit comments

Comments
 (0)